Spring Boot 빌드 및 실행

Codren·2021년 9월 7일
0

Section 1. Spring Boot Build

1. Spring Boot Build

  • Spring Boot Web App 프로젝트 디렉토리로 이동
./gradlew build

오류 발생 시
./gradle clean
./gradle clean build




2. Spring Boot Web App Run

  • java -jar 명령어로 프로젝트.jar 파일 실행
cd build/libs
java -jar hello-spring-0.0.1-SNAPSHOT.jar




3. java -jar hello-spring-0.0.1-SNAPSHOT.jar

  • 서버에 프로젝트.jar 파일만 복사해서 집어 넣고 java - jar 명령어로 실행하면 웹 동작

0개의 댓글