本文主要是介绍启动项目时报错:IntelliJ IDEA 源值1.5已过时,将在未来所有版本中删除,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
原因:
IDEA默认把项目的源代码版本设置为jdk1.5,目标代码设置为jdk1.5
解决方案:
- 修改Maven的Settings.xml文件添加如下内容
<profile><id>jdk-1.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>
- 在项目的pom.xml文件中添加
<properties><maven.compiler.source>1.8</maven.compiler.source><maven.compiler.target>1.8</maven.compiler.target>
</properties>
- 打开项目配置,设置Modules的Language Level为”8”
最后按”Ctrl+Alt+S”打开设置,搜索”Java Compiler”,将默认jdk和当前modual的jdk版本切换为1.8即可
这篇关于启动项目时报错:IntelliJ IDEA 源值1.5已过时,将在未来所有版本中删除的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!