java泛型:eclipse中没有显示编译器错误

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编译器是错误的.

为什么会有这样的差异?

在这里,您将了解环境的详细信息:

  • 日食

    • Mars.2发布(4.5.2)
    • jdk 1.8.0_71
    • 编译器合规性级别:1.8
    • 错误/警告
  • Maven的

    • Apache Maven 3.3.3(7994120775791599e205a5524ec3e0dfe41d4a06; 2015-04-22T13:57:37 + 02:00)
    • Maven home:C:\ Develop\tools\apache-maven-3.3.3
    • Java版本:1.8.0_71,供应商:Oracle Corporation
    • Java home:C:\ Program Files\Java\jdk1.8.0_71\jre
    • 默认语言环境:it_IT,平台编码:Cp1252
    • 操作系统名称:"windows 10",版本:"10.0",arch:"amd64",系列:"dos"
    • 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)?

A_D*_*teo 6

这是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.