IDEA overwrite报错languagelevel设置不生效问题
Posted bangaj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IDEA overwrite报错languagelevel设置不生效问题相关的知识,希望对你有一定的参考价值。
发现idea 倒入项目后,发现@override报错,发现是idea的jdk版本不对,需要设置大于1.5的jdk版本
解决办法:
IDEA:File >> Project Structure >> Project 中设置Project language level如下
IDEA:File >> Project Structure >> Modules 中设置Project language level如下
如果languagelevel总是无效,每次项目重新编译后该配置想总是回到jdk5,需要在pom中加入plugin属性
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.6</source> <target>1.6</target> <encoding>UTF-8</encoding> </configuration> </plugin> </plugins> </build>
原来在idea中Maven项目默认的LanguageLevel是1.5,maven项目发生任何变化,这个值都会被idea重置成1.5
只有通过maven-compiler-plugin强制限制编辑器的类型才可以
以上是关于IDEA overwrite报错languagelevel设置不生效问题的主要内容,如果未能解决你的问题,请参考以下文章
MyBatis generator配置 overwrite 文件覆盖失效
linux命令报错:cp: cannot overwrite directory ‘xxx‘ with non-directory(在Linux系统中,同一目录下不能同时存在同名的文件和目录)