我有例外
java.lang.NoSuchFieldError: reportUnusedDeclaredThrownExceptionIncludeDocCommentReference outside eclipse in command line using maven.
gwt 库在依赖项列表的顶部声明,并且正在使用 GWT 2.5.1 。 如何解决这个问题?请帮忙
答案 0 :(得分:8)
好吧,我弄明白是什么问题。 在我的pom.xml中,我有这种依赖
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>4.7.0</version>
问题在于,jasper报告依赖于jdtcore
<dependency>
<artifactId>jdtcore</artifactId>
<groupId>eclipse</groupId>
<version>3.1.0</version>
</dependency>
jdtcore实际上与gwt编译器产生冲突。要解决这个问题,我需要在jasper依赖项中添加一个排除项,比如
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>4.7.0</version>
<exclusions>
<exclusion>
<artifactId>jdtcore</artifactId>
<groupId>eclipse</groupId>
</exclusion>
</exclusions>
</dependency>
现在如果仍然需要web应用程序中的jdtcore库(通常是动态编译jasper报告),我们可以像这样添加范围运行时的依赖
<dependency>
<artifactId>jdtcore</artifactId>
<groupId>eclipse</groupId>
<version>3.1.0</version>
<scope>runtime</scope>
</dependency>
最后请注意,如果有人遇到问题,那么应该查看pom.xml中的任何依赖项是否依赖于jdtcore,将其排除并将其包含为运行时
希望这有帮助
答案 1 :(得分:0)
对于gradle,在build.gradle中排除传递依赖,如下所示:
dependencies {
compile('net.sf.jasperreports:jasperreports:3.7.4') {
//Exclude as it caused problems with GWT:
//http://stackoverflow.com/questions/17991063/java-lang-nosuchfielderror-reportunuseddeclaredthrownexceptionincludedoccomment
exclude group: 'eclipse', module: 'jdtcore'
}
}
除了我做了这个更改后,我的jasper编译失败了。我不确定如何让Jasper编译和GWT编译在同一个项目中共存?