java.lang.AbstractMethodError: org.apache.xerces.dom.ElementImpl.getTextContent()Ljava/lang/String
Posted
技术标签:
【中文标题】java.lang.AbstractMethodError: org.apache.xerces.dom.ElementImpl.getTextContent()Ljava/lang/String【英文标题】: 【发布时间】:2012-12-10 12:00:52 【问题描述】:我正在使用 Omnifaces 1.3 + Primefaces 3.4.1 + Jboss 7.1.1 Final 但我无法通过 ajax 请求在我的 web.xml
上配置的 FullAjaxExceptionHandler
重定向异常。什么都没有发生,只是另一个例外:
19:38:05,467 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/taxMileage].[Faces Servlet]] (http--0.0.0.0-8181-4) Servlet.service() for servlet Faces Servlet threw exception: ;
at org.omnifaces.config.WebXml.parseErrorPageLocations(WebXml.java:216) [omnifaces-1.3.jar:1.3]
at org.omnifaces.config.WebXml.<init>(WebXml.java:84) [omnifaces-1.3.jar:1.3]
at org.omnifaces.config.WebXml.<clinit>(WebXml.java:53) [omnifaces-1.3.jar:1.3]
at org.omnifaces.exceptionhandler.FullAjaxExceptionHandler.handleAjaxException(FullAjaxExceptionHandler.java:162) [omnifaces-1.3.jar:1.3]
at org.omnifaces.exceptionhandler.FullAjaxExceptionHandler.handle(FullAjaxExceptionHandler.java:145) [omnifaces-1.3.jar:1.3]
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:119) [jsf-impl-2.1.7-jbossorg-2.jar:]
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) [jsf-impl-2.1.7-jbossorg-2.jar:]
有人可以给我一个提示吗?我被困住了。如果我在没有 ajax 的情况下调用相同的错误,则会正确重定向异常。
我的web.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0"
>
<display-name>taxMileage</display-name>
<welcome-file-list>
<welcome-file>/pages/protected/user/dashboard.xhtml</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet>
<servlet-name>InitializeApplication</servlet-name>
<servlet-class>com.taxMileage.server.util.InitializeApplication</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<context-param>
<param-name>primefaces.THEME</param-name>
<param-value>south-street</param-value>
</context-param>
<filter>
<filter-name>PrimeFaces FileUpload Filter</filter-name>
<filter-class>org.primefaces.webapp.filter.FileUploadFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>PrimeFaces FileUpload Filter</filter-name>
<servlet-name>Faces Servlet</servlet-name>
</filter-mapping>
<filter>
<filter-name>facesExceptionFilter</filter-name>
<filter-class>org.omnifaces.filter.FacesExceptionFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>facesExceptionFilter</filter-name>
<servlet-name>Faces Servlet</servlet-name>
</filter-mapping>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
<url-pattern>*.jsf</url-pattern>
<url-pattern>*.xhtml</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>javax.ws.rs.core.Application</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
<!-- -->
<!-- Protected area definition -->
<security-constraint>
<web-resource-collection>
<web-resource-name>Restricted Area - ADMIN Only</web-resource-name>
<url-pattern>/pages/protected/admin/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>ADMIN</role-name>
</auth-constraint>
</security-constraint>
<security-constraint>
<web-resource-collection>
<web-resource-name>Restricted Area - USER and ADMIN</web-resource-name>
<url-pattern>/pages/protected/user/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>USER</role-name>
<role-name>ADMIN</role-name>
</auth-constraint>
</security-constraint>
<security-constraint>
<web-resource-collection>
<web-resource-name>Secured resources</web-resource-name>
<url-pattern>/rest/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>NONE</transport-guarantee>
</user-data-constraint>
</security-constraint>
<!-- Login page -->
<login-config>
<auth-method>FORM</auth-method>
<form-login-config>
<form-login-page>/pages/public/login.xhtml</form-login-page>
<form-error-page>/pages/public/loginError.xhtml</form-error-page>
</form-login-config>
</login-config>
<!-- System roles -->
<security-role>
<role-name>ADMIN</role-name>
</security-role>
<security-role>
<role-name>USER</role-name>
</security-role>
<error-page>
<exception-type>java.lang.RuntimeException</exception-type>
<location>/pages/error/error1.xhtml</location>
</error-page>
</web-app>
我的faces-config.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<faces-config xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_2_1.xsd"
version="2.1">
<lifecycle>
<phase-listener>com.taxMileage.server.util.MultiPageMessagesSupport</phase-listener>
</lifecycle>
<factory>
<exception-handler-factory>org.omnifaces.exceptionhandler.FullAjaxExceptionHandlerFactory</exception-handler-factory>
</factory>
<application>
<resource-bundle>
<base-name>messages</base-name>
<var>msgs</var>
</resource-bundle>
</application>
</faces-config>
谢谢!
【问题讨论】:
【参考方案1】:java.lang.AbstractMethodError: org.apache.xerces.dom.ElementImpl.getTextContent()Ljava/lang/String;
当您的 WAR 的 /WEB-INF/lib
(甚至 JRE 的 /lib
)中存在 Xerces JAR 文件时,就会发生这种情况,该文件的版本比 servletcontainer 内部使用的版本旧。旧版本显然实现了Java 1.4.2 或更早的 JAXP,缺少在Java 1.5 的 JAXP 中引入的上述方法。
有两种选择:
将 Xerces JAR 文件升级到至少与使用 servletcontainer 的版本匹配的新版本。
从/WEB-INF/lib
中删除那些 Xerces JAR 文件。他们实际上不属于那里。 servletcontainer 带有它自己的 JAXP 实现。你不需要通过 webapp 提供你自己的。
建议使用选项 2。使用 Maven 等依赖管理框架时要小心。一些糟糕的库会特别包含一个 JAXP 实现作为传递依赖,即使 API 已经是 Java SE 的一部分。
请注意,具体问题与 OmniFaces 无关。它只是由类路径污染引起的。 OmniFaces 使用 JAXP 解析web.xml
(和web-fragment.xml
)并提取错误页面位置。 更新:自 OmniFaces 2.0 以来,不应再发生此特定异常,因为它已根据 issue 90 将 getTextContent()
调用替换为 getFirstChild().getNodeValue()
。
【讨论】:
你是完全正确的......非常感谢!我的圣诞礼物! 我在旧的传递依赖项上遇到了类似的问题。这个答案有帮助! 由于这个答案,用几分钟解决了同样的问题 - 谢谢!是的,我使用了选项 #2! 谢谢。就我而言,我最终升级到 XercesImpl-2.9.1,它与 jboss-as 7.1.1 下的版本相同。【参考方案2】:我在独立应用程序中遇到了类似的错误(即未使用 Omnifaces 1.3 + Primefaces 3.4.1 + Jboss 7.1.1)。我将以下内容添加到我的 pom.xml 文件中,它为我解决了问题。
<!-- https://mvnrepository.com/artifact/xerces/xerces -->
<dependency>
<groupId>xerces</groupId>
<artifactId>xerces</artifactId>
<version>2.4.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/xerces/xercesImpl -->
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.12.0</version>
</dependency>
【讨论】:
这是上面答案中的解决方案 1,只是带有明确的版本信息(这比上面的答案更不通用)。出于好奇,您为什么不选择解决方案 2? 我在独立应用程序中遇到错误,而不是网络应用程序。我更新了答案以反映这一点,感谢您指出。以上是关于java.lang.AbstractMethodError: org.apache.xerces.dom.ElementImpl.getTextContent()Ljava/lang/String的主要内容,如果未能解决你的问题,请参考以下文章