加载程序约束冲突

2022-09-02 10:15:41

对于一个项目,我遇到了两次具有相同.jar(对于我的情况,el-api.jar v2.1)的问题,因此,当我尝试使用Tomcat 6运行我的项目时,会出现以下错误堆栈。

WARNING: Unexpected error forwarding to login page
javax.servlet.ServletException: java.lang.LinkageError: loader constraint violation: when resolving interface method "javax.servlet.jsp.JspApplicationContext.getExpressionFactory()Ljavax/el/ExpressionFactory;" the class loader (instance of org/apache/jasper/servlet/JasperLoader) of the current class, org/apache/jsp/login_jsp, and the class loader (instance of org/apache/catalina/loader/StandardClassLoader) for resolved class, javax/servlet/jsp/JspApplicationContext, have different Class objects for the type javax/el/ExpressionFactory used in the signature

 at java.lang.Thread.run(Thread.java:619)
Caused by: java.lang.LinkageError: loader constraint violation: when resolving interface method "javax.servlet.jsp.JspApplicationContext.getExpressionFactory()Ljavax/el/ExpressionFactory;" the class loader (instance of org/apache/jasper/servlet/JasperLoader) of the current class, org/apache/jsp/login_jsp, and the class loader (instance of org/apache/catalina/loader/StandardClassLoader) for resolved class, javax/servlet/jsp/JspApplicationContext, have different Class objects for the type javax/el/ExpressionFactory used in the signature

我找到了 http://blog.springsource.com/2008/10/20/understanding-the-osgi-uses-directive/

但这没有用,因为解决方案影响了我项目的太多部分。

我无法对Tomcat进行任何更改,并且该项目将被许多其他用户使用。

目前的解决方法是在每次我们进行构建并使用Tomcat6时.jar删除el-api。然后,我们需要将.jar放回去,因为这是其他东西所要求的。

我用了 Maven 2 和 Maven 3 来构建。(顺便说一句,有谁知道在Jruby上使用Maven3吗?

任何人都可以帮助我解决这个问题吗?


答案 1

对于一个项目,我遇到了两次具有相同.jar(对于我的情况,el-api.jar v2.1)的问题,因此,当我尝试使用Tomcat 6运行我的项目时,会出现以下错误堆栈。

然后将 el-api.jar 工件标记为 ,如果是的话。provided

目前的解决方法是在每次我们进行构建并使用Tomcat6时.jar删除el-api。然后,我们需要将.jar放回去,因为这是其他东西所要求的。

处理这个问题的一个更好的方法是在配置文件中声明依赖项,并将其标记为(例如在“tomcat6”配置文件中)或不根据需要。provided


答案 2

我得到这个错误试图运行Spring(3.0.5)样本mvc-ajax与Tomcat 7。

Tomcat 7 使用 el-api 2.2 和 jsp-api 2.2。mvc-ajax pom 文件指定 jsp-api 2.1,其中还包含 el-api 中的类。

为了运行它,我从pom中注释掉了jsp-api 2.1。这允许Tomcat使用自己的(更新的)版本。


推荐