解决报错 types are not supported at this language level 5
原因
一般而言,对于IDEA的Maven项目,如果不在pom.xml
中指定JDK版本,则会默认使用JDK 1.5,因而不支持正则表达式等操作。
解决方案
在pom.xml
的<project> ...</project>
中加入
<profiles>
<profile>
<id>jdk1.8</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>
</profiles>
之后,鼠标对准pom.xml
右键,Maven
-- Reimport
,搞定~
网友评论