标签: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
标签:spring cloud 热部署
原文地址:http://1754966750.blog.51cto.com/7455444/1956964