반응형

1. 시험환경

    ˙ 윈도우

    ˙ IntelliJ Community

 

2. 목적

    ˙ Springboot 프로젝트를 구성 및 최초 실행 시 발생하는 아래 에러를 해결한다.

Execution failed for task ':TemplateApplication.main()'.
> Process 'command 'C:/Program Files/Java/jdk-17.0.5/bin/java.exe'' finished with non-zero exit value 1

 

3. 적용

    ① SpringBoot 프로젝트 구성, IntelliJ 임포트 및 실행하는 방법은 아래 내용을 참고한다.

        - 참고 : 

 

    ② Springboot 프로젝트를 IntelliJ로 최초 실행 시 아래와 같은 에러가 발생할 수 있다.

 

    ③ [File] → [Settings...] 메뉴를 클릭한다.

        - 단축키 : <Ctrl> + <Alt> + <S>

 

    ④ IntelliJ IDEA로 변경한다.

 

반응형
반응형

1. 시험환경

    ˙ 윈도우 10

    ˙ intelliJ IDEA 2021.3.1 (Community Edition)

    ˙ spring initializer (Gradle)

        - 참고) https://languagestory.tistory.com/136

 

SpringBoot 프로젝트 생성 및 MySQL 연동 설정

1. 시험환경 ˙ 윈도우 10 ˙ MySQL 8.0 Win x64 ˙ intelliJ IDEA 2021.3.1 (Community Edition) ˙ spring initializer (Gradle) 2. 목적 ˙ spring initializer(https://start.spring.io)를 통해서 Spring Boot..

languagestory.tistory.com

 

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>

 

 

 

※ 내용이 도움 되셨다면 광고 클릭 한번 부탁드립니다 ※

반응형

+ Recent posts