1、网上资料,把project structure中的project下的编译版本、modules中的版本、run-edit configuration中的版本设置成一致的。
2、如果还不能解决,则在pom.xml中添加如下配置
<build> <defaultGoal>compile</defaultGoal> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.8</source> <target>1.8</target> <testExcludes> <testExclude>/src/test/**</testExclude> </testExcludes> <encoding>utf-8</encoding> </configuration> </plugin> </plugins> </build>