从 Maven 依赖项动态加载类
我有 Maven 依赖项,范围设置为运行时,并且从另一个模块我尝试使用 Class.forName("com.example.something.full.path") 加载一个类,我看到 ClassNotFoundException。我的模块 B 依赖于模块 A。我正在尝试从 B 中的 A 加载一个类。我尝试执行 Class.forName 的类是使用 Spring 初始化的。我可以看到 jar(模块 A)位于 B 的类路径中,这还不够吗?
添加更多细节:
我正在尝试使用 Eclipse 来测试它。 最后它必须作为 web 应用程序或任何独立 java 进程的一部分工作。
编辑:
抱歉,我对问题的描述不清楚。我试图动态加载内部类。当我执行 Class.forName("com.example.myclass$innerclass") 时,它起作用了。
I have maven dependency with scope set to runtime and from another module I try loading a class using Class.forName("com.example.something.full.path") and I see ClassNotFoundException. I have module B dependent on module A. I am trying to load a class from A within B. The class where I am trying to do Class.forName is initialized using Spring. I can see that jar (module A) is in the classpath of B, isn't that enough?
Adding more details:
I am trying to test it using Eclipse.
In the end it must be working as part of a webapp or any standalone java process.
EDIT:
Sorry, I was not clear in my description of the problem. I was trying to load an inner class dynamically. When I did Class.forName("com.example.myclass$innerclass") it worked.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查您的 Maven 配置的最佳方法是使用 Maven 运行您的主类:
这将真正告诉您您的依赖项是否有问题。如果您得到这样的 CNFE,那么几乎可以肯定,您所依赖的 jar 中不存在具有您指定名称的类。
The best way to check your maven config is to run your main class with maven:
That will tell you truly whether you have a problem with your dependency. If you get a CNFE like that, then almost certainly there's no class with the name you specified in the jar you're depending on.