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
- 너비우선탐색
- 백준
- 코딩테스트
- 쪽지기능
- 알고리즘
- 브실이의입시전략
- SWEA
- 이메일인증
- nodejs
- 깊이우선탐색
- 파이썬
- 1260
- Python
- 자바
- 앱개발
- BFS
- DFS
- Gmail인증
- 노드개발
- springboot
- 실버5
- 코테
- 노드개발자
- 프로그래머스
- email인증
- 백준 2667
- 코딩
- Java
- 노드프로젝트
- static final
Archives
- Today
- Total
데옹의 블로그
[Spring Boot] A problem occurred configuring root project '...'. (Intellij)(ERROR) 본문
SpringBoot
[Spring Boot] A problem occurred configuring root project '...'. (Intellij)(ERROR)
성띠용 2023. 3. 18. 01:09프로젝트 시작하는데
A problem occurred configuring root project '...'.
> Could not resolve all files for configuration ':classpath'.
> ...
이런 에러가 떴다.
스프링부트 3.x.x.... 버전 부터는 java 17이 필요하다. 그래서 바꿔주면 잘 된다.
변경하는 법
1. 프로젝트가 이미 만들어져 있다면?
- File -> Project Structure에서 SDK를 java 17로 변경한다.
- build.gradle에서 sourceCompatibility를 '17'로 변경한다.
- 혹시 모르니 File > Settings(Ctrl+Alt+S) > Build, Execution, Deployment > Build Tools > Gradle 로 이동해서 'Gradle JVM' 도 17로 바꿔준다.
- Load Gradle Changes (Ctrl+Shift+O) : build.gradle 코끼리 누르기
2. 프로젝트 시작할 때라면?
- 그냥 JDK랑 Java 17 version 고르면 끝남
'SpringBoot' 카테고리의 다른 글
[Spring Boot] Java에서 final과 static (0) | 2023.07.03 |
---|---|
[SpringBoot] 동시성 문제 (0) | 2023.06.21 |
[Spring Boot] JAR vs WAR (0) | 2023.03.18 |
[SpringBoot] Google Email 인증 코드 mail 보내기 (JDBC) (6) | 2023.01.21 |