[IntelliJ]Spring 프로젝트 생성 후 Cannot resolve Symbol 'String'
2022. 4. 15. 00:29ㆍERROR
에서 프로젝트 생성 후, Application 클래스의 main 메서드를 실행하여 프로젝트 설치가 잘 되었는지 확인하려고 하였다.
그런데, Cannot resolve Symbol 'String' 이라는 오류가 발생했다. Build를 눌러보았지만 sdk가 지정되지 않았다는 경고메시지를 알려주며 실행되지 않았다. 검색해본 결과 IntelliJ가 알려준 메시지와 동일하게
이 오류는 SDK가 지정되어있지 않아 발생한 오류였다.
file>Project Structure>Project Settings에서 SDK를 사용하고 있는 JDK로 변경하니 해결되었다.
변경하기 전에는 Module SDK is not defined였다.
'ERROR' 카테고리의 다른 글
No entity found for query 에러 (0) | 2022.06.01 |
---|---|
@PostConstruct와 no EntityManager (0) | 2022.05.31 |
Could not autowire. No beans of 'EntityManager' type found. (0) | 2022.05.30 |
Loading class 'com.mysql.jdbc.Driver'. This is deprecated. The new driver class is 'com.mysql.cj.jdbc.Driver'. (0) | 2022.05.18 |
java.lang.ClassNotFoundException: com.mysql.jdbc.Driver (0) | 2022.05.18 |