[IntelliJ] war 파일 실행 배포하기

Yuni·2023년 7월 17일
0

IntelliJ

목록 보기
5/8


1. 우선 Gradle -> bootWar를 눌러준다

2. 저장된 War파일을 확인해준다 (build -> libs)

3. application.properties도 옮겨준다

4. .bat 파일을 작성해준다

@echo off
d:
cd D:\temp
java -jar D:\temp\VietnamCameraMap-0.0.1-SNAPSHOT.war
exit
@echo off
d:
cd D:\temp
start java -jar D:\temp\VietnamCameraMap-0.0.1-SNAPSHOT.war
exit

앞에 start 붙여도 돌아감

5. 따로 폴더를 만들고 필요한 파일들을 넣어준다

  • logs 폴더
  • tomcat.bat
  • application.properties
  • 파일이름-0.0.1-SNAPSHOT.war
  1. .bat을 클릭 후 실행하면 성공

  2. 종료 시 control + c 누르기

profile
backend developers

1개의 댓글

comment-user-thumbnail
2023년 7월 18일

좋은 글 감사합니다!

답글 달기