【发布时间】:2015-02-27 07:49:37
【问题描述】:
我正在使用以下 Apache Abdera 依赖项来使用 Atom 提要。
<dependency>
<groupId>org.apache.abdera</groupId>
<artifactId>abdera-parser</artifactId>
<version>1.1.3</version>
</dependency>
在我将 abdera 依赖项添加到 pom.xml 后,我收到来自另一个服务的 AbstractMethodError。以下是堆栈跟踪:
Caused by: java.lang.AbstractMethodError
at org.apache.cxf.staxutils.StaxUtils.addLocation(StaxUtils.java:1110) [cxf-common-utilities-2.4.6.jar:2.4.6]
at org.apache.cxf.staxutils.StaxUtils.readDocElements(StaxUtils.java:998) [cxf-common-utilities-2.4.6.jar:2.4.6]
at org.apache.cxf.staxutils.StaxUtils.readDocElements(StaxUtils.java:971) [cxf-common-utilities-2.4.6.jar:2.4.6]
at org.apache.cxf.staxutils.StaxUtils.read(StaxUtils.java:898) [cxf-common-utilities-2.4.6.jar:2.4.6]
我正在使用 Java 7。
【问题讨论】:
标签: maven apache-abdera