码迷,mamicode.com
首页 > 编程语言 > 详细

Spring Boot 在Linux环境中 使用System.loadLibrary("XXX") 加载so文件

时间:2020-03-03 12:51:09      阅读:333      评论:0      收藏:0      [点我收藏+]

标签:作用   我的链接   文件名   linux环境   ref   cat   utf-8   linux   details   

场景, 在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 启动,成功无错误

 

Spring Boot 在Linux环境中 使用System.loadLibrary("XXX") 加载so文件

标签:作用   我的链接   文件名   linux环境   ref   cat   utf-8   linux   details   

原文地址:https://www.cnblogs.com/eason-d/p/12401371.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!