Intellij IDEA 升级到15之后,之前那些@Override 的都标红,提示@Override is not allowed when implement interface method !

Intellij IDEA  @Override 标红-LMLPHP

可以在这个地方设置,但是治标不治本!

我是用maven管理的项目, 所以在pom.xml 中添加

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.2</version>
    <configuration>
        <source>1.7</source>
        <target>1.7</target>
    </configuration>
</plugin>

就搞定了!

在项目开始前我们就已经确定了jdk的版本,这个地方根据jdk的版本进行设置!

04-24 04:00