Spring Boot 在Linux环境中 使用System.loadLibrary(\"XXX\") 加载so文件
场景, 在Spring Boot加载so文件, 在此记录配置的过程和帮助过我的链接文档
System.loadLibrary("hello"); // Load native library at runtime hello.dll (Windows) or libhello.so 注意: window环境中文件名为hello.dll 或 libhello.so
步骤1: 把so文件存放在一个目录中
步骤2: Linux 运行jar文件配置lib库地址
nohup java -Dfile.encoding=utf-8 -Djava.library.path=/root/baller/lib -jar picture-server.jar >nohup.log 2>&1 &
此时运行会提示错误: cannot open shared object file: No such file or directory
步骤3: 把非lib目录假如到 共享库配置文件/etc/ld.so.conf中
参考地址: https://blog.csdn.net/chen495810242/article/details/89314570
# cat /etc/ld.so.conf include ld.so.conf.d/*.conf # echo "/root/baller/lib" >> /etc/ld.so.conf # ldconfig 刷新的作用
步骤4: 再次执行jar 启动,成功无错误
相关推荐
瑞风轻拂 2020-11-02
farwang 2020-11-25
星愿心愿 2020-11-24
tianhuak 2020-11-24
zhjn0 2020-11-24
昭君出塞 2020-11-23
bluecarrot 2020-11-23
linuxwcj 2020-10-21
以梦为马不负韶华 2020-10-20
彼岸随笔 2020-10-20
yutou0 2020-10-17
applecarelte 2020-10-16
ourtimes 2020-10-16
waterhorse 2020-09-19
MRFENGG 2020-11-11
rainandtear 2020-10-30
kyssfanhui 2020-10-20