springCloud--补充:热部署
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springCloud--补充:热部署相关的知识,希望对你有一定的参考价值。
添加依赖: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--补充:热部署的主要内容,如果未能解决你的问题,请参考以下文章