IDEA导入项目后出现@Override错误,虽然不影响编译,但是看起来不和谐。

@Override is not allowed when implementing interface method_其他

对于这个问题,网上有两种解决方案:

1、File-->Project Structure...-->Module-->选中模型-->Language Level,选择6(网上这种方案较多)

@Override is not allowed when implementing interface method_其他_02

 

2、pom文件中配置maven-compiler-plugin(个人认为这种方案更正确,可以避免每个人都要按照解决方案一设置一次)

 

  1.  
    <plugin>
  2.  
    <groupId>org.apache.maven.plugins </groupId>
  3.  
    <artifactId>maven-compiler-plugin </artifactId>
  4.  
    <version>3.2 </version>
  5.  
    <configuration>
  6.  
    <source>1.6 </source>
  7.  
    <target>1.6 </target>
  8.  
    </configuration>
  9.  
    </plugin>
  10.  

 

@Override is not allowed when implementing interface method_其他_03