我创建了两个Spring启动项目。
一个是test
项目,另一个是我的working
项目
测试项目:
使用System.load我将.dll加载到dir .dll位于文件夹测试项目
中工作项目:
现在我试图加载相同的.dll .dll放在我的工作文件夹中
所以每个项目都有自己的.dll
我总是处于错误状态:
java.lang.UnsatisfiedLinkError dir 已经加载到另一个类加载器中
我是否需要"卸载"来自测试项目的第一个.dll?
是否有任何位置,tomcat正在为我的测试项目会话加载.dll,以便我无法再为我的工作项目加载.dll?
或者
如何加载"已加载"图书馆?
Exception in thread "restartedMain" java.lang.UnsatisfiedLinkError: Native Library C:\Dev\workspace\lightserver\src\main\libs\huesdk.dll already loaded in another classloader
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1907)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824)
at java.lang.Runtime.load0(Runtime.java:809)
at java.lang.System.load(System.java:1086)
答案 0 :(得分:0)
在spring集成外部dll时出现,抛出java.lang.UnsatisfiedLinkError异常:
Exception in thread "restartedMain" java.lang.UnsatisfiedLinkError: Native Library *\opencv_java400.dll already loaded in another classloader
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1907)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1857)
at java.lang.Runtime.loadLibrary0(Runtime.java:870)
at java.lang.System.loadLibrary(System.java:1122)
at com.jinbill.ocr.OcrApplication.<clinit>(OcrApplication.java:22)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:15)
使用spring-boot-devtools,springboot会在运行的时候重新加载context(启动时会重新加载一次),所以会提示加载链接库,直接在加载的动态链接库所在的位置加上try上线:
@SpringBootApplication
public class AppApplication {
static {
try {
System.loadLibrary(NATIVE_LIBRARY_NAME);
} catch (UnsatisfiedLinkError ignore) {
/ / After using spring-dev-tools, the context will be loaded multiple times, so here will throw the exception that the link library has been loaded.
/ / If there is this exception, the link library has been loaded, you can directly swallow the exception.
}
}
public static void main(String[] args) {
SpringApplication.run(AppApplication.class, args);
}
}