[STS] Spring Boot Devtools 설치 방법
2022. 7. 8. 00:47ㆍ개발공부 기강잡자/Java&Spring
소스에 변경이 일어날 때마다 스프링부트의 로컬 서버를 매번 재실행 시켜줘야한다 > 매우 번거롭다!
Spring Boot Devtools 설치
- 서버를 재시작 하지 않아도 클래스 변경시에 서버가 자동으로 재가동 된다
1. build.gradle 수정
: Spring Boot Devtools 는 Gradle로 설치해야한다
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
}
developmentOnly 'org.springframework.boot:spring-boot-devtools'
- dependencies 부분에 추가한다
2. Refresh Gradle Project
build.gradle 우클릭 > Gradle > Refresh Gradle Project 실행
- 그러면 Boot DashBoard 의 서버명에 [devtools] 가 붙는다.
3. 서버 재시작
서버를 재시작하고, 그 다음부터는 소스 수정이 일어나면 자동으로 재실행 된다.
끝
'개발공부 기강잡자 > Java&Spring' 카테고리의 다른 글
[Spring Boot] 2022.07.07 ~ 2022.07.15 점프 투 스프링 실습 회고 (0) | 2022.07.19 |
---|---|
[Spring Boot] @Annotation 정리 (0) | 2022.07.14 |
[Spring/JPA] H2 Database 설정 - Windows 홈디렉터리에 파일 생성하기 | h2-console 접속 오류 (0) | 2022.07.11 |
[Spring] Spring Boot 전체 구조 (0) | 2022.07.11 |
[STS] 롬복(Lombok) 설치 (0) | 2022.07.08 |