linux在内存加载so文件,Spring Boot 在Linux环境中 使用System.loadLibrary("XXX") 加载so文件...
场景, 在Spring Boot加载so文件, 在此记录配置的过程和帮助过我的链接文档System.loadLibrary("hello"); // Load native library at runtimehello.dll (Windows) or libhello.so注意: window环境中文件名为hello.dll 或 libhello.so步骤1: 把so文件存放在一个目录中步骤2
场景, 在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中
# cat /etc/ld.so.conf
include ld.so.conf.d/*.conf
# echo "/root/baller/lib" >> /etc/ld.so.conf
# ldconfig 刷新的作用
步骤4: 再次执行jar 启动,成功无错误
魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。
更多推荐



所有评论(0)