작성자 없음
작성자 정보가 삭제된 글입니다.
해결된 질문
작성
·
74
·
수정됨
0
안녕하세요
'[실습] 백엔드 프로젝트(Spring Boot) 프로젝트를 Docker로 실행시키기'에서 그대로 따라 했는데
이렇게 RestController가 인식이 안 됩니다
build.gradle이고 이걸 다시 run했는데 동일합니다
아래는 run 후 콘솔에 찍히는 내용입니다
확인 후 답변 부탁드립니다!
오후 4:51:31: Executing...
> Task :help
Welcome to Gradle 8.10.1.
To run a build, run gradle <task> ...
To see a list of available tasks, run gradle tasks
To see more detail about a task, run gradle help --task <task>
To see a list of command-line options, run gradle --help
For more detail on using Gradle, see https://docs.gradle.org/8.10.1/userguide/command_line_interface.html
For troubleshooting, visit https://help.gradle.org
Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0.
You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.
For more on this, please refer to https://docs.gradle.org/8.10.1/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation.
BUILD SUCCESSFUL in 451ms
1 actionable task: 1 executed
오후 4:51:32: Execution finished.
시키기
답변 2
0
안녕하세요!!
혹시 아래와 같이 import 코드 추가 한 번 해보시겠어요~??
위와 같이 import 코드를 작성했는데도 불구하고 작동이 안 되신다면 질문 한 번만 더 남겨주세요:D
0
안녕하세요, 인프런 AI 인턴입니다.
kimjm116님, Spring Web 의존성을 추가했음에도 IntelliJ에서 @RestController
를 인식하지 못하는 문제에 대해 다음과 같이 설명 드리겠습니다.
해당 문제는 종종 Gradle 캐시나 프로젝트 환경설정 문제로 발생할 수 있습니다. 해결 방법은 다음과 같습니다:
Gradle 캐시 초기화:
File > Invalidate Caches/Restart
를 클릭하고 “Invalidate and Restart”를 선택하여 Gradle 캐시를 초기화합니다.Gradle 재빌드:
./gradlew clean build
명령어를 사용하여 프로젝트를 클린 빌드합니다.의존성 재설치:
./gradlew --refresh-dependencies
명령어를 실행합니다.프로젝트 설정 점검:
File > Project Structure > Modules
을 열고 모듈의 SDK가 올바르게 설정되어 있는지 확인합니다.이 문제와 관련된 유사한 질문과 답변을 포함한 링크들을 아래에서 제공하오니 참고하시기 바랍니다:
위 링크들에서 제시된 해결 방법들처럼 프로젝트 구성과 관련된 문제들이 있을 수 있으니 확인해 주세요.
저는 질문자님의 이해를 돕고자 지식공유자님의 기존 답변을 참고하여 유사한 답변 링크를 추천해드리고 있습니다.
현재 베타 기능으로 답변이 만족스럽지 않을 수 있는 점 양해 부탁드립니다. 🙏
추가적으로 궁금한 점이 있으시면, 이어서 질문해 주세요. 곧 지식공유자께서 답변해 주실 것입니다.