1. 程式人生 > >Springboot在eclipse中實現熱部署

Springboot在eclipse中實現熱部署

1.在pom.xml檔案當中新增:

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

2.在application.properties檔案當中新增:

spring.resources.chain.cache=false

3.在eclipse的選單欄選中project中的Build Automatically .

4.重啟專案,實現了熱部署 。