Leta Learns

cmd에서 빌드하기 본문

Spring

cmd에서 빌드하기

leta 2022. 7. 5. 19:52
.\gradlew build     // 빌드 (프로젝트가 저장된 위치까지 들어온 후 입력)
.\gradlew clean     // 빌드 삭제
.\gradlew clean build   // 삭제 후 재빌드

 

 

빌드 파일은 build/libs 에 존재.

빌드 파일의 경로
D:\Users\letaleta\Desktop\spring\hello-spring\build\libs

빌드 파일 실행
D:\Users\letaleta\Desktop\spring\hello-spring\build\libs>java -jar hello-spring-0.0.1-SNAPSHOT.jar

 

'Spring' 카테고리의 다른 글

[IntelliJ] Generate 단축키 (windows)  (0) 2022.07.25
@Autowired / Could not autowire. No beans of '~' type found.  (0) 2022.07.18
@Transactional import 하기  (0) 2022.07.18
스프링 빈 Spring Bean  (0) 2022.07.13
Comments