文档首页/ 数字资产链 DAC/ 常见问题/ 接口类问题/ Java-SDK编译提示jar包冲突
更新时间:2022-11-04 GMT+08:00
分享

Java-SDK编译提示jar包冲突

问题现象

could not load a native library: netty_tcnative_osx_aarch_64

问题原因

netty-tcnative-boringssl-static版本太低。

解决方法

升级到以下版本即可解决。

        <dependency>
            <groupId>io.netty</groupId>
            <artifactId>netty-tcnative-boringssl-static</artifactId>
            <version>2.0.44.Final</version>
        </dependency>

相关文档