Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- import
- tomcat
- Eclipse
- JavaScript
- Source
- find
- resource
- profile
- Quartz
- Mac
- plugin
- web.xml
- context
- maVen
- xargs
- vscode
- bash
- GIT
- Windows
- grep
- ssh
- VirtualBox
- 네트워크
- lsof
- Windows 10
- port
- netsh
- 줄바꿈 문자
- 단축키
- IntelliJ
Archives
- Today
- Total
develog
Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DE.. 본문
카테고리 없음
Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DE..
냐옴 2023. 8. 10. 13:00
에러
Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'. Use DEBUG level to see the full stack: java.lang.UnsatisfiedLinkError: failed to load the required native library
해결, build.gradle 에 디펜던서 추가
testImplementation 'io.netty:netty-resolver-dns-native-macos'
# or
testImplementation 'io.netty:netty-resolver-dns-native-macos:4.1.119.Final:osx-aarch_64'
Comments