728x90
문제
error: cannot find symbol
@SpringBootApplication
잘 실행되던 소스가 갑자기 안된다.
intelliJ 에서 Springboot 를 이용 중인데, 종종 이런 일이 발생하는 것 같다
메인 실행하는 곳부터 에러가 나는데 , import 가 안되는 문제가 발생했다.
@SpringBootApplication
public class PaymentApplication {
public static void main(String[] args) {
SpringApplication.run(PaymentApplication.class, args);
}
}
시도
1차. 클린 후 재 build
Gradle 의 Task -> build -> clean / Task -> build -> build
2차. 캐시비우기
상단 메뉴바에서 File > Invalidate Caches
Invalidate and Restart 선택시 자동 재 실행후 gradle의 세팅으로 빌드가 다시 진행됨
안되는 경우
3차. IDE 최신버전으로 업데이트
Help -> Check for updates에서 업데이트를 확인하고 업데이트를 진행해준다
그렇게 업데이트...
Spring configuration check
Unmapped Spring configuration files found.
반응형
'Etc > Problem Solving' 카테고리의 다른 글
[Node.js] npm install 설치 오류 해결법, --force, --legary-peer-deps 차이 (0) | 2022.12.21 |
---|---|
[Linux] ip: command not found 오류 해결 방법 (2) | 2022.06.07 |
[SpringBoot] intelliJ - Spring configuration checkUnmapped Spring configuration files found 에러 (0) | 2021.06.30 |
[Bitbucket] git branch push 시 reject 발생 (0) | 2021.05.11 |
원격 장치 또는 리소스가 연결을 수락하지 않습니다. 해결하기 (0) | 2021.04.09 |