답변 2
0
안녕하세요. 유예린님, 공식 서포터즈 OMG입니다.
다음 링크와 동일한 상황일 것으로 예상이 됩니다.
https://www.inflearn.com/questions/61436
생성한 프로젝트 폴더 경로가 study
> hello-spring
> hello-spring
이렇게 되어있는지 확인해주세요.
이렇게 되어 있다면 cd hello-spring
명령을 한번 더 입력하셔서 hello-spring으로 이동해서 확인해주세요.
최종 경로: C:\study\hello-spring\hello-spring
해결이 안될 경우
를 입력하여 C:\study\hello-spring 경로에서 dir
명령어(프로젝트 폴더 내 리스트 출력)를 입력한 결과를 캡쳐하여 올려주세요 😀
감사합니다.
@GetMapping("hello-mvc");
^
C:\study\hello-spring\hello-spring\src\main\java\com\example\hello_spring\controller\HelloController.java:17: error: ')' expected
model.addAttribute(attributeName: "name", name);
^
(1) @GetMapping("hello-mvc") 뒤에 ; 를 지우고
(2) model.addAttribute(attributeName:
"name", name); 에서 attributeName:
을 지우고 확인해보시겠어요?
0
안녕하세요, 인프런 AI 인턴입니다.
유예린님께서는 윈도우 환경에서 gradlew build
명령어 실행 시 오류가 발생하는 상황을 겪고 계신 것 같습니다. 윈도우에서 이러한 빌드 문제를 해결하기 위한 몇 가지 일반적인 팁과 유사한 상황에서의 해결 방법을 제공한 기존 답변을 찾았습니다. 아래 두 가지 해결 방법을 참고해보시기 바랍니다.
gradlew build
명령어는 프로젝트의 루트 디렉토리에서 실행되어야 정상 작동합니다.gradlew build
대신 gradlew.bat build
명령어를 사용해야 할 수도 있습니다. 하지만 주로 사용되는 명령어는 gradlew build
입니다.해당 문제와 유사한 상황에 대한 답변으로는, 윈도우 빌드가 안돼요 질문에서와 같이 gradlew clean build
를 실행해 보는 것도 좋은 시도가 될 수 있습니다. 이 명령어는 기존에 빌드된 파일들을 정리(clean)한 후 다시 빌드(build)를 시도합니다.
또한 윈도우 환경에서 build 오류가 나요… 질문에서 제시된 해결법 중 하나로, 프로젝트 디렉토리에서의 올바른 명령어 사용에 대한 안내도 유익할 수 있습니다.
이러한 해결책들이 유예린님께서 겪고 계신 문제를 해결하는 데 도움이 되길 바랍니다. 기타 문제가 지속된다면, 추가적으로 명령어 실행 시 발생하는 구체적인 오류 메시지나 환경 설정 상태 등을 제공해 주시면 더 구체적인 해결 방법을 제시할 수 있을 것입니다.
저는 질문자님의 이해를 돕고자 지식공유자님의 기존 답변을 참고하여 유사한 답변 링크를 추천해드리고 있습니다.
현재 베타 기능으로 답변이 만족스럽지 않을 수 있는 점 양해 부탁드립니다. 🙏
추가적으로 궁금한 점이 있으시면, 이어서 질문해 주세요. 곧 지식공유자께서 답변해 주실 것입니다.
말씀하신대로 프로젝트 폴더가 hello-spring > hello-spring 이렇게 되어있었어요!! 감사합니다 이걸 왜 몰랐을까요
근데 다른 문제가 생겼는데..
java17로 환경변수 설정하고 실행했더니 이런 문구가 뜨면서 실패했다고 뜨고..
Welcome to Gradle 8.8!
Here are the highlights of this release:
- Running Gradle on Java 22
- Configurable Gradle daemon JVM
- Improved IDE performance for large projects
For more details see https://docs.gradle.org/8.8/release-notes.html
Starting a Gradle Daemon (subsequent builds will be faster)
> Task :compileJava
C:\study\hello-spring\hello-spring\src\main\java\com\example\hello_spring\controller\HelloController.java:15: error: illegal start of type
@GetMapping("hello-mvc");
^
C:\study\hello-spring\hello-spring\src\main\java\com\example\hello_spring\controller\HelloController.java:17: error: ')' expected
model.addAttribute(attributeName: "name", name);
^
C:\study\hello-spring\hello-spring\src\main\java\com\example\hello_spring\controller\HelloController.java:17: error: not a statement
model.addAttribute(attributeName: "name", name);
^
C:\study\hello-spring\hello-spring\src\main\java\com\example\hello_spring\controller\HelloController.java:17: error: ';' expected
model.addAttribute(attributeName: "name", name);
^
4 errors
> Task :compileJava FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':compileJava'.
> Compilation failed; see the compiler error output for details.
* Try:
> Run with --info option to get more log output.
> Run with --scan to get full insights.
BUILD FAILED in 17s
1 actionable task: 1 executed
Running Gradle on Java 22라는 내용을 java22를 사용하라는 내용으로 이해하고 java22를 다운 받은 후 빌드를 시도했더니 아래와 같은 화면이 나오면서 실행이 안돼요..