스프링부트는 코드 변경시 서버 리로딩이 자동으로 안된다.

⇒ 매번 restart를 해야해서 불편함

devtools 의존성 이용하면 자동으로 리로딩 된다.

https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-devtools/2.7.16

 

<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-devtools -->
		<dependency>
		    <groupId>org.springframework.boot</groupId>
		    <artifactId>spring-boot-devtools</artifactId>
		</dependency>

 

 

 

'Framework > SPRING BOOT' 카테고리의 다른 글

JSON 처리(@RequestBody)  (0) 2023.09.25
JSON 처리(@ResponseBody)  (0) 2023.09.25
리소스 (image, js, css)  (0) 2023.09.22
AOP  (0) 2023.09.22
I18N  (1) 2023.09.21
xoo | 수진