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 |
Tags
- 자바스크립트
- api gateway
- cognito
- 온프레미스
- elasticsearch
- 비구조화 할당
- vgw
- Site-to-Site VPN
- JavaScript
- optional chaining
- grafana
- CloudFormation
- DynamoDB
- VPC
- docker swarm
- Service
- 옵셔널 체이닝
- null 병합 연산자
- prometheus
- 구조분해 할당
- Custom Resource
- AWS
- Proxy Resource
- Endpoints
- On-Premise
- transit gateway
- docker
- 단축 평가
- Kubernetes
- Await
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