1. 程式人生 > >springCloud--補充:熱部署

springCloud--補充:熱部署

spring cloud 熱部署

添加依賴:pom.xml

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


在eclipse下此時就可以了,但是在idea下卻無效果,解決如下:pom.xml

<build>
    <plugins>
        <plugin>
	    <groupId>org.springframework.boot</groupId>
	    <artifactId>spring-boot-maven-plugin</artifactId>
	    <!--開啟熱部署-->
	    <configuration>
	        <fork>true</fork>
	    </configuration>
	</plugin>
    </plugins>
</build>


本文出自 “我愛大金子” 博客,請務必保留此出處http://1754966750.blog.51cto.com/7455444/1956964

springCloud--補充:熱部署