서버/Spring boot

#IntelliJ에서 Spring Boot Devtools 사용하기

paran21 2022. 1. 24. 17:36
  • Spring Boot Devtools를 사용하면 소스 변경이 발생할 때마다 빠르게 자동 빌드를 해주어 바로바로 반영 결과를 확인할 수 있다.

설정

  • dependency에 추가
    • build.gradle 
    • dependencies { developmentOnly 'org.springframework.boot:spring-boot-devtools' }​
  • File > Setting > Build, Exeution, Deployment > Compiler > Build project automatically 체크
  • File > Setting > Advanced Setting > Allow auto-make to start even if developed application is currently running 체크

참고자료 : https://kim-oriental.tistory.com/m/8

'서버 > Spring boot' 카테고리의 다른 글

#자바에서 JSON형식 사용하기  (0) 2022.01.25
#ARC를 통해 Java로 Open API가져오기  (0) 2022.01.25
#MySQL 연결하기  (0) 2022.01.24
#HiddenHttpMethodFilter  (0) 2022.01.24
#Thymeleaf  (0) 2022.01.24