Bootstrap

【踩坑日常,已解决】彻底修改IDEA项目的JDK版本,8改为17

三处修改彻底解决IDEA中JDK版本不对问题(8改为17)

第一处

setting -> Build, Execution, Deployment -> Java Compiler -> Target bytecode version 修改为17 -> Apply -> OK
在这里插入图片描述

第二处

Project Structure -> Modules -> 各模块的Language level改为17 -> Apply -> OK
在这里插入图片描述

第三处

在各模块的pom.xml中加入以下配置,并重启:

<!-- 配置当前项目的jdk版本信息 -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>17</source>
                    <target>17</target>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>

完成!

;