** 기록용
프로젝트 ▶ Properties
1. Project Facets 에서 Java Version 변경
2. Java Build Path 에서 JRE System Library 선택하고 [Edit]
2. Java Build Path 에서 JRE System Library 선택하고 [Edit]
3. Java Compiler 에서 Compiler compliance level 변경
pom.xml으로 와서 properties의 java-version 변경
전 14.0.2 로 변경했습니다
<properties>
<java-version>14.0.2</java-version>
<org.springframework-version>5.2.3.RELEASE</org.springframework-version>
<org.aspectj-version>1.6.10</org.aspectj-version>
<org.slf4j-version>1.6.6</org.slf4j-version>
</properties>
pom.xml 하단 플러그인 부분도 수정
저는 아까 Java SE-14로 선택했으니 14
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>14</source>
<target>14</target>
<compilerArgument>-Xlint:all</compilerArgument>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>