java泛型:eclipse中未显示编译器错误
Posted
技术标签:
【中文标题】java泛型:eclipse中未显示编译器错误【英文标题】:java generics: compiler error not shown in eclipse 【发布时间】:2016-10-30 10:24:30 【问题描述】:我有这些课程:
public class EntityDataModel<T extends AbstractEntity>
...
public abstract class BarChartBean<E extends ChartEntry, T>
protected EntityDataModel<? extends T> currentModel;
...
我可以在eclipse上编译和运行这段代码没有问题,但是当我调用mvn compile
时,会抛出这个错误:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.5.1:compile (default-compile) on project edea2: Compilation failure: Compilation failure:
[ERROR] C:\Develop\...\BarChartBean.java:[53,30] error: type argument ? extends T#1 is not within bounds of type-variable T#2
[ERROR] where T#1,T#2 are type-variables:
[ERROR] T#1 extends Object declared in class BarChartBean
[ERROR] T#2 extends AbstractEntity declared in class EntityDataModel
这个错误不言自明,理论上来说javac是对的,eclipse编译器是错的。
为什么会有这样的差异?
这里是环境的详细信息:
日食
Mars.2 发布 (4.5.2) jdk 1.8.0_71 编译器合规级别:1.8Maven
Apache Maven 3.3.3 (7994120775791599e205a5524ec3e0dfe41d4a06; 2015-04-22T13:57:37+02:00) Maven 主页:C:\Develop\tools\apache-maven-3.3.3 Java 版本:1.8.0_71,供应商:甲骨文公司 Java 主页:C:\Program Files\Java\jdk1.8.0_71\jre 默认语言环境:it_IT,平台编码:Cp1252 操作系统名称:“windows 10”,版本:“10.0”,arch:“amd64”,家族:“dos”maven-compiler-plugin:
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
问题:我如何对齐 eclipse 编译器行为到 javac(但我不想在 eclipse 中使用 javac)?
【问题讨论】:
【参考方案1】:这是 Eclipse Java 编译器和官方 JDK 编译器 (because these are different indeed) 之间的又一个不匹配。而且 javac 并不总是这个游戏中的right 演员,您确实可以遇到 Eclipse 编译器中没有发生的 javac 错误。
已经报告了一个类似的问题:Bug 456459: Discrepancy between Eclipse compiler and javac - Enums, interfaces, and generics。
要将 Maven 与 Eclipse 对齐,您可以 configure maven-compiler-plugin
如下:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerId>eclipse</compilerId>
</configuration>
<dependencies>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-eclipse</artifactId>
<version>2.7</version>
</dependency>
</dependencies>
</plugin>
基本上,您是在告诉 Maven 使用 Eclipse Java 编译器。我能够重现您的问题并应用此配置,然后 Maven 构建就可以了。但是,我不推荐这种方法。
另一方面,配置 Eclipse 以使用 JDK 编译器有点困难,主要是因为 Eclipse 编译器是 IDE 功能的一部分。 Stack Overflow q/a 中解释了一个过程:How to run Javac from Eclipse。
【讨论】:
谢谢,只要知道这是一个 ECJ 错误就足够了。我开了一个bug report。 @MicheleMariotti,感谢您的错误报告。正如那里所争论的那样,我不相信 ecj 是错误的。 JLS 4.5 通过捕获类型参数来定义参数化类型的格式良好。根据定义,这种捕获符合相应类型变量的上限。那么,cap#1 extends glb(AbstractEntity,T)
怎么会违反绑定extends AbstractEntity
呢?这种类型可能因矛盾的界限(即未定义的 glb)而形成错误,但我没有看到任何这样的矛盾。那么,为什么编译器要拒绝这个呢?
关于plexus-compiler-eclipse
:我不确定这个插件是如何维护的以及它会引入什么版本的ecj。在wiki.eclipse.org/JDT/…收集了更多关于在Eclipse之外使用ecj的提示,其中包括选项使用 tycho,它会定期更新 ecj 依赖项。
@StephanHerrmann 我一定会看看的。再次谢谢你:)以上是关于java泛型:eclipse中未显示编译器错误的主要内容,如果未能解决你的问题,请参考以下文章
Eclipse工程中Java Build Path中的JDK版本和Java Compiler Compiler compliance level的区别(转)