Notice
Recent Posts
Recent Comments
Tags
- 바코드 스캔하기
- javascript 유효성체크
- asp.net Select
- XSS PHP
- django 엑셀불러오기
- 하드 마이그레이션
- 강제이동
- 말줄임표시
- jquery 바코드생성
- TempData
- 맥 오라클설치
- asp.net dropdownlist
- Mac Oracle
- 타임피커
- 파일업로드 체크
- ViewData
- javascript 바코드스캔
- XSS방어
- ViewBag
- asp.net core Select
- 바코드 생성하기
- 파일업로드 유효성체크
- javascript redirection
- jquery 바코드
- php 캐쉬제거
- ASP.Net Core 404
- 404에러페이지
- 하드 윈도우 복사
- javascript 바코드 생성
- SSD 복사
웹개발자의 기지개
[SpringBoot] 스프링부트 배포하기 (By Intellij) 본문
Java/Spring Boot
[SpringBoot] 스프링부트 배포하기 (By Intellij)
http://portfolio.wonpaper.net 2023. 12. 26. 23:33인텔리제이에서 War 형태로 Spring Boot 간단히 배포해보자.
우측 Gradle 창에서 bootwar 클릭하면 /build/lib/war 파일생성
[ build.gradle ]
1
2
3
4
5
6
|
plugins {
id 'java'
id 'war'
id 'org.springframework.boot' version '3.2.1'
id 'io.spring.dependency-management' version '1.1.4'
}
|
cs |
그리고 서버에 올리려면 아래 포스팅을 참고하도록 하자.
https://jjeongil.tistory.com/2151
https://kitty-geno.tistory.com/191
참고 : https://trytoso.tistory.com/1570
참고 : https://trytoso.tistory.com/1569
'Java > Spring Boot' 카테고리의 다른 글
Comments