我想部署一个EAR,WAR包含来自lib jar的覆盖类。例如:
我有一个包含example.jar
的pom.xml,其中包含com.example.ClassExample
,但在我的WAR项目中,我已经在类路径中覆盖了这个类:
com.example.ClassExample
。
这是一个Spring Boot应用程序,因此当我在Tomcat嵌入式服务器中运行时,要加载的第一个类是类路径中的ClassExample类(这很棒)。
但是在Jboss中,EAP 6.1首先从example.jar加载ClassExample。我无法删除example.jar,因为我需要这个库中的其他类。
有任何帮助吗?感谢