반응형
1. 시험환경
˙ 윈도우 10
˙ intelliJ IDEA 2021.3.1 (Community Edition)
˙ spring initializer (Gradle)
- 참고) https://languagestory.tistory.com/136
2. 목적
˙ Spring Boot 신규 생성후 intelliJ에서 처음 시작시 발생 오류를 해결 한다.
1
2
3
4
5
6
7
|
Execution failed for task ':ConnectionApplication.main()'.
> Process 'command 'C:/Program Files/Java/jdk-17.0.2/bin/java.exe'' finished with non-zero exit value 1
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
|
cs |
3. 적용
① 신규 생성한 SpringBoot 프로젝트를 intelliJ에서 최초 실행시, 설정 에러가 발생할 수 있다.
- 서버 실행 단축키 : <Shift> + <F10>
② "File" 메뉴 → "Settings..." 하위 메뉴를 클릭한다.
③ <Build, Execution, Deployment> → <Build Tools> → <Maven> → <Gradle> 세팅을 변경한다.
- Build and run using : IntelliJ IDEA
- Run tests using : IntelliJ IDEA
4. 결과
˙ SpringBoot 프로젝트를 재실행하면 설정 에러가 재현되지 않는 것을 확인할 수 있다.
- 서버 실행 단축키 : <Shift> + <F10>
※ 내용이 도움 되셨다면 광고 클릭 한번 부탁드립니다 ※
반응형
'스프링 프레임워크' 카테고리의 다른 글
STS(Spring Tool Suite) 최신 버전 설치 (0) | 2022.02.25 |
---|---|
[JPA] 테이블 자동 생성 및 데이터 스크립트(.sql) 자동 실행 (0) | 2022.02.23 |
SpringBoot 프로젝트 생성 및 MySQL 연동 설정 (0) | 2022.02.23 |
스프링 web.xml - SameSite Cookie 설정 (0) | 2022.01.14 |
[pom.xml 에러] Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer (0) | 2021.12.04 |