쩨이엠 개발 블로그

[ gradle ] 서버 재기동 없이 리로드 하고 싶을 때 본문

개발/ETC

[ gradle ] 서버 재기동 없이 리로드 하고 싶을 때

쩨이엠 2020. 10. 25. 19:13
728x90
반응형

Front-End 작업 할 때 하나 바꾸고 재기동하고 하나 바꾸고 재기동하기 싫을 때

 

build.gradle에 org.springframework.boot:spring-boot-devtools 를 추가 해준다

 
 dependencies{
 ...
 implementation 'org.springframework.boot:spring-boot-devtools'
 ...
 }
 

 

728x90
반응형
Comments