Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- AWS
- api gateway
- prometheus
- Proxy Resource
- 구조분해 할당
- 비구조화 할당
- docker
- 온프레미스
- JavaScript
- 자바스크립트
- optional chaining
- 단축 평가
- elasticsearch
- VPC
- null 병합 연산자
- Site-to-Site VPN
- DynamoDB
- grafana
- Endpoints
- 옵셔널 체이닝
- Kubernetes
- Custom Resource
- Await
- transit gateway
- CloudFormation
- Service
- cognito
- vgw
- On-Premise
- docker swarm
Archives
- Today
- Total
만자의 개발일지
[Spring Boot] Spring Boot 프로젝트 빌드 본문
gradlew build 명령어로 Spring Boot 프로젝트를 빌드 할 수 있다.
$ sudo ./gradlew build
build를 하게 되면 build 디렉토리가 생성이되고 build/libs/ 디렉토리 안에 jar파일이 생성된다.
ls ./build/libs/
# 결과
<rootProject.name>-<version>.jar
version의 경우 build.gradle 파일에서 확인 할 수 있고 rootProject.name은 settings.gradle 파일에서 확인할 수 있다.
'Java > Spring Boot' 카테고리의 다른 글
[Spring Boot] Cannot construct instance of XXXDto 에러 해결 방법 (0) | 2022.03.23 |
---|---|
[Spring Boot] Spring Boot 프로젝트 생성하기 (0) | 2022.02.07 |
Comments