从 Maven 依赖项动态加载类

发布于 2024-12-09 12:10:45 字数 420 浏览 0 评论 0原文

我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

榆西 2024-12-16 12:10:45

检查您的 Maven 配置的最佳方法是使用 Maven 运行您的主类:

mvn compile exec:java -D exec.mainClass=<your main class>

这将真正告诉您您的依赖项是否有问题。如果您得到这样的 CNFE,那么几乎可以肯定,您所依赖的 jar 中不存在具有您指定名称的类。

The best way to check your maven config is to run your main class with maven:

mvn compile exec:java -D exec.mainClass=<your main class>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文