SpringBoot(二):SpringBoot 热部署

2019-08-26 06:14:38来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

SpringBoot(二):SpringBoot 热部署

 

 1.配置pom:

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
</configuration>
</plugin>
</plugins>
</build>
二、IDEA 设置

3. Register配置:

Ctrl+Shift+Alt+/ => Register => 找到并勾选compiler.automake.allow.when.app.running => IDEA重启

4. 修改完成重启即可。

 


原文链接:https://www.cnblogs.com/2019lgg/p/11387463.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:解决多字段联合逻辑校验问题【享学Spring MVC】

下一篇:java FastJson的使用