Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 쉬운 계단 수
- @NotEmpty
- 10951
- 데코레이터패턴
- mycp
- createQuery
- pscp
- 여러인수
- designpattern
- @ModelAttribute
- BubbleSorting
- 10844
- 백준
- decorator
- 디자인패턴
- Linux
- C
- 자료구조
- setParameter
- springboot
- gradle
- java
- @Spring
- 점세개
- Spring
- junit
- 전치행렬 #C
- NamedParameterNotBound
- 숫자야구
- 자바
Archives
- Today
- Total
...
JPA /Maven 이용시 Error:java: error: release version 5 not supported 해결 본문
이것저것/오류 해결
JPA /Maven 이용시 Error:java: error: release version 5 not supported 해결
gi2 2022. 3. 26. 03:06Error:java: error: release version 5 not supported 에러 발생 시
pom.xml에
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
</plugins>
</build>
추가하고 리팩토링 하면 문제 해결 ~~~!!!!
'이것저것 > 오류 해결' 카테고리의 다른 글
[JUnit]Named parameter not bound 에러 (0) | 2022.04.17 |
---|---|
Spring Test 오류 해결 [FAILURE: Build failed with an exception] (0) | 2022.04.06 |
H2 연결 에러가 발생하였을 때 해결 방법 (0) | 2022.03.26 |
[MAVEN/JAVA11 JPA 이용시 에러 해결]ClassNotFoundException (0) | 2022.03.26 |
Junit의 @BeforeEach 이 실행 안 됨 오류 (0) | 2022.02.25 |