[Spring 에러] intellij release version 5/11/12 not supported
1. File - project structure - Project에서 사용할 자바 버전 체크 및 확인
2. File - Settings - Build, Execution, Deployment - Java Compiler에서 자바 컴파일 확인
3. pom.xml에 "org.apache.maven.plugins"를 추가
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>12</source>
<target>12</target>
</configuration>
</plugin>
</plugins>
</build>
'[Spring]' 카테고리의 다른 글
[SpringMVC] @GetMapping MockMVC 테스트해보기 (0) | 2020.04.02 |
---|---|
@GetMapping 테스트 해보기 (0) | 2020.04.02 |
[Spring] @AOP(Aspect Orient Programming)의 이해 (0) | 2020.03.23 |
[Spring]Spring Validation 사용해보기 (0) | 2020.03.17 |
[Spring] Bytebuddy를 사용한 .class 바꾸기 (0) | 2020.03.15 |