Mic*_*tti 8 java eclipse maven-3 maven maven-compiler-plugin
我有这些课程:
public class EntityDataModel<T extends AbstractEntity>
{
...
}
public abstract class BarChartBean<E extends ChartEntry, T>
{
protected EntityDataModel<? extends T> currentModel;
...
}
Run Code Online (Sandbox Code Playgroud)
我可以在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
Run Code Online (Sandbox Code Playgroud)
错误是非常明显的,从理论上讲,javac是正确的,eclipse编译器是错误的.
为什么会有这样的差异?
在这里,您将了解环境的详细信息:
日食
Maven的
Maven的编译器插件:
<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>
Run Code Online (Sandbox Code Playgroud)问题:如何将 eclipse编译器行为与javac 对齐(但我不想在eclipse中使用javac)?
这是Eclipse Java编译器和官方JDK编译器之间的另一个不匹配(因为它们确实不同).并且javac 在这个游戏中并不总是正确的角色,你确实可以找到Eclipse编译器中没有出现的javac bug.
已经报告了类似的问题:错误456459:Eclipse编译器和javac之间的差异 - 枚举,接口和泛型.
要使用Eclipse的Maven对齐,您可以配置的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>
Run Code Online (Sandbox Code Playgroud)
基本上,您告诉Maven使用Eclipse Java编译器.我能够重现您的问题并应用此配置,Maven构建就可以了.但是,我不推荐这种方法.
另一方面,配置Eclipse以使用JDK编译器要困难一些,主要是因为Eclipse编译器是IDE功能的一部分.Stack Overflow中解释了一个过程q/a:如何从Eclipse运行Javac.
归档时间: |
|
查看次数: |
828 次 |
最近记录: |