재우니의 블로그

Spring Tool Suite 툴에서 war 을 배포하는 방법.

먼저 저는 spring boot 로 프로젝트를 생성한 이유로 인해, 만약에 tomcat 과 관련된 부분을 pom.xml 에 넣었을 경우
war 배포시 오류가 발생합니다.

             <!-- 
           <dependency>
             <groupId>org.springframework.boot</groupId>
             <artifactId>spring-boot-starter-tomcat</artifactId>
             <scope>provided</scope>     
           </dependency>
              -->


Run As > Maven install 을 선택


로그 내용에, war 파일이 배포된 경로를 알려 줍니다.


왼쪽 솔루션 화면에서는 target 폴더 내부에 war 파일이 존재하는것도 보실 수 있습니다.