- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
摘要:从正在运行的 Java 程序加载 jar 会导致 NoClassDefFoundError
由 ClassNotFoundException
引起由类间依赖引起(例如 import
语句)。我怎样才能绕过它?
更详细的问题:
我试图以编程方式加载一个 jar 文件——我们称之为“服务器”——通过我自己的 Java 程序加载到 Java 虚拟机中——我们称之为“ServerAPI”——并使用扩展和其他一些技巧来修改行为并与服务器交互。 ServerAPI 依赖于 Server,但如果 Server 不存在,ServerAPI 仍然必须能够从网站运行和下载 Server。
为了避免在不满足服务器依赖的情况下加载 ServerAPI 导致的错误,我制作了一个启动器——我们称之为“启动器”——它的目的是下载服务器并根据需要设置 ServerAPI,然后加载 Server 和 ServerAPI,然后运行服务器API。
但是,当我尝试从 Launcher 加载 jar 时,由于 ClassLoader 无法解析它正在加载的类所依赖的文件中的其他类,因此出现错误。简而言之,如果我尝试加载类 A
, 如果 A
会抛出错误进口B
因为我还没加载B
然而。但是,如果 B
也进口A
,我被卡住了,因为我无法弄清楚如何一次加载两个类或如何在没有 JVM 运行验证的情况下加载一个类。
为什么所有的限制都会导致我出现这个问题:
我正在尝试修改和添加 Server 的行为,但由于复杂的法律原因,我无法直接修改程序,因此我创建了 ServerAPI,它依赖于并且可以从外部调整 Server 的行为。
但是,由于更复杂的法律原因,Server 和ServerAPI 不能简单地一起下载。启动器(见上文)必须使用 ServerAPI 下载,然后启动器需要下载服务器。最后,可以使用 Server 作为依赖项运行 ServerAPI。这就是为什么这个问题如此复杂。
这个问题也将适用于项目的后面部分,这将涉及基于插件的 API 接口(interface),需要能够在运行时从 jar 文件加载和卸载插件。
我已经对这个问题进行了研究:
我已通读并未能得到以下方面的帮助:
JarEntries
加载 jar。来自
JarFile
类似于
this question .我通过使用和调用
URLClassLoader
来尝试这个的
loadClass(String)
方法并通过创建一个扩展
URLClassLoader
的类这样我就可以利用
loadClass(String, boolean resolve)
尝试强制
ClassLoader
解析它加载的所有类。两种方式,我都遇到了同样的错误:
I couldn't find the class in the JarEntry!
entry name="org/apache/logging/log4j/core/appender/db/jpa/converter/ContextMapAttributeConverter.class"
class name="org.apache.logging.log4j.core.appender.db.jpa.converter.ContextMapAttributeConverter"
java.lang.NoClassDefFoundError: javax/persistence/AttributeConverter
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:760)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:455)
at java.net.URLClassLoader.access$100(URLClassLoader.java:73)
at java.net.URLClassLoader$1.run(URLClassLoader.java:367)
at java.net.URLClassLoader$1.run(URLClassLoader.java:361)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:360)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at Corundum.launcher.CorundumClassLoader.load(CorundumClassLoader.java:52)
at Corundum.launcher.CorundumLauncher.main(CorundumLauncher.java:47)
Caused by: java.lang.ClassNotFoundException: javax.persistence.AttributeConverter
at java.net.URLClassLoader$1.run(URLClassLoader.java:372)
at java.net.URLClassLoader$1.run(URLClassLoader.java:361)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:360)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
... 12 more
URLClassLoader
.在
Class<?> clazz = loadClass(
开头的行,我尝试使用 true 和 false 作为 boolean 参数;两次尝试都导致了上述相同的错误。
public boolean load(ClassLoadAction class_action, FinishLoadAction end_action) {
// establish the jar associated with this ClassLoader as a JarFile
JarFile jar;
try {
jar = new JarFile(jar_path);
} catch (IOException exception) {
System.out.println("There was a problem loading the " + jar_path + "!");
exception.printStackTrace();
return false;
}
// load each class in the JarFile through its JarEntries
Enumeration<JarEntry> entries = jar.entries();
if (entries.hasMoreElements())
for (JarEntry entry = entries.nextElement(); entries.hasMoreElements(); entry = entries.nextElement())
if (!entry.isDirectory() && entry.getName().endsWith(".class"))
try {
/* this "true" in the line below is the whole reason this class is necessary; it makes the URLClassLoader this class extends "resolve" the class,
* meaning it also loads all the classes this class refers to */
Class<?> clazz = loadClass(entry.getName().substring(0, entry.getName().length() - 6).replaceAll("/", "."), true);
class_action.onClassLoad(this, jar, clazz, end_action);
} catch (ClassNotFoundException | NoClassDefFoundError exception) {
try {
close();
} catch (IOException exception2) {
System.out.println("There was a problem closing the URLClassLoader after the following " + exception2.getClass().getSimpleName() + "!");
exception.printStackTrace();
}
try {
jar.close();
} catch (IOException exception2) {
System.out.println("There was a problem closing the JarFile after the following ClassNotFoundException!");
exception.printStackTrace();
}
System.out.println("I couldn't find the class in the JarEntry!\nentry name=\"" + entry.getName() + "\"\nclass name=\""
+ entry.getName().substring(0, entry.getName().length() - 6).replaceAll("/", ".") + "\"");
exception.printStackTrace();
return false;
}
// once all the classes are loaded, close the ClassLoader and run the plugin's main class(es) load() method(s)
try {
jar.close();
} catch (IOException exception) {
System.out.println("I couldn't close the URLClassLoader used to load this jar file!\njar file=\"" + jar.getName() + "\"");
exception.printStackTrace();
return false;
}
end_action.onFinishLoad(this, null, class_action);
System.out.println("loaded " + jar_path);
// TODO TEST
try {
close();
} catch (IOException exception) {
System.out.println("I couldn't close the URLClassLoader used to load this jar file!\njar file=\"" + jar_path + "\"");
exception.printStackTrace();
return false;
}
return true;
}
最佳答案
尴尬的是,我发现答案是错误消息说的是实话。 javax.persistence.AttributeConverter
,加载器声称的类不存在,不在 jar 中。
我通过只加载主类和 ClassLoader
解决了这个问题。所有引用类,实质上是加载程序中使用的jar中的所有类,这就是我所需要的。
现在,我可以发誓我之前检查过这个并找到了那个类;我想当我检查时,我必须实际检查该类的 Apache 开源存储库,而不是实际的服务器。我不记得了。
无论如何,AttributeConverter
不见了。我不知道他们如何或为什么设法编译一个缺少依赖项的 jar,但我猜他们的主要进程从不使用那部分代码,所以它从不抛出错误。
很抱歉浪费了大家的时间……包括我自己的时间。我已经被这个问题困住了一段时间。
这个故事的寓意:
如果您正在尝试加载一个可执行 jar,除非您确实需要,否则不要费心加载 jar 中的所有类。只需加载主类;这将加载程序运行所需的一切。
//编辑:
我现在开始遇到同样的错误,但直到我尝试从加载的类中调用方法时才会出现。这个问题显然仍然悬而未决。请投反对票并忽略此答案。
关于java - 在运行时加载 jar 会导致 NoClassDefFoundError/ClassNotFoundException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26153026/
尝试使用集成到 QTCreator 的表单编辑器,但即使我将插件放入 QtCreator.app/Contents/MacOS/designer 也不会显示。不过,相同的 dylib 文件确实适用于独
在此代码示例中。 “this.method2();”之后会读到什么?在返回returnedValue之前会跳转到method2()吗? public int method1(int returnedV
我的项目有通过gradle配置的依赖项。我想添加以下依赖项: compile group: 'org.restlet.jse', name: 'org.restlet.ext.apispark', v
我将把我们基于 Windows 的客户管理软件移植到基于 Web 的软件。我发现 polymer 可能是一种选择。 但是,对于我们的使用,我们找不到 polymer 组件具有表格 View 、下拉菜单
我的项目文件夹 Project 中有一个文件夹,比如 ED 文件夹,当我在 Eclipse 中指定在哪里查找我写入的文件时 File file = new File("ED/text.txt"); e
这是奇怪的事情,这个有效: $('#box').css({"backgroundPosition": "0px 250px"}); 但这不起作用,它只是不改变位置: $('#box').animate
这个问题在这里已经有了答案: Why does OR 0 round numbers in Javascript? (3 个答案) 关闭 5 年前。 Mozilla JavaScript Guide
这个问题在这里已经有了答案: Is the function strcmpi in the C standard libary of ISO? (3 个答案) 关闭 8 年前。 我有一个问题,为什么
我目前使用的是共享主机方案,我不确定它使用的是哪个版本的 MySQL,但它似乎不支持 DATETIMEOFFSET 类型。 是否存在支持 DATETIMEOFFSET 的 MySQL 版本?或者有计划
研究 Seam 3,我发现 Seam Solder 允许将 @Named 注释应用于包 - 在这种情况下,该包中的所有 bean 都将自动命名,就好像它们符合条件一样@Named 他们自己。我没有看到
我知道 .append 偶尔会增加数组的容量并形成数组的新副本,但 .removeLast 会逆转这种情况并减少容量通过复制到一个新的更小的数组来改变数组? 最佳答案 否(或者至少如果是,则它是一个错
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
noexcept 函数说明符是否旨在 boost 性能,因为生成的对象中可能没有记录异常的代码,因此应尽可能将其添加到函数声明和定义中?我首先想到了可调用对象的包装器,其中 noexcept 可能会产
我正在使用 Angularjs 1.3.7,刚刚发现 Promise.all 在成功响应后不会更新 angularjs View ,而 $q.all 会。由于 Promises 包含在 native
我最近发现了这段JavaScript代码: Math.random() * 0x1000000 10.12345 10.12345 >> 0 10 > 10.12345 >>> 0 10 我使用
我正在编写一个玩具(物理)矢量库,并且遇到了 GHC 坚持认为函数应该具有 Integer 的问题。是他们的类型。我希望向量乘以向量以及标量(仅使用 * ),虽然这可以通过仅使用 Vector 来实现
PHP 的 mail() 函数发送邮件正常,但 Swiftmailer 的 Swift_MailTransport 不起作用! 这有效: mail('user@example.com', 'test
我尝试通过 php 脚本转储我的数据,但没有命令行。所以我用 this script 创建了我的 .sql 文件然后我尝试使用我的脚本: $link = mysql_connect($host, $u
使用 python 2.6.4 中的 sqlite3 标准库,以下查询在 sqlite3 命令行上运行良好: select segmentid, node_t, start, number,title
我最近发现了这段JavaScript代码: Math.random() * 0x1000000 10.12345 10.12345 >> 0 10 > 10.12345 >>> 0 10 我使用
我是一名优秀的程序员,十分优秀!