DBILITY

intellij spring boot devtools setting 본문

intellij

intellij spring boot devtools setting

DBILITY 2022. 2. 18. 12:50
반응형

이거 보고 광고 한번 안 누른 이는 삼대가 재수 없을지어다!ㅋㅋ

누르고 복권을 사라!

eclipse에선 그냥 pom에 포함시키면 됐던 것 같은데, intellij ( 사용버전 IntelliJ IDEA 2021.3.2 (Ultimate Edition) )는 그렇지 않았다..

dependancy를 추가하고, spring initializr에서 선택할 수 있다.

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <scope>runtime</scope>
    <optional>true</optional>
</dependency>

application.properties에

spring.devtools.livereload.enabled=true

intellij setting에서 다음 그림 1,2와 같이 처리한다.

그림 1
그림 2

 

 

반응형
Comments