在使用IDEA开发maven项目时,自动生成的重写方法上没有出现@Override注解,添加上以后报错---@Override is not allowed when implementing interface method
解决办法有两种:
第一种,也是相对简单的一种:在pom.xml中引入jdk即可。
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
第二种:点击file--->Project Structure,设置Modules和Project,设置SDK为本地安装的jdk,language level设为 8-Lambdas