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