标签:快捷 热部署 dev style uil tools ica setting compile
热部署的意思就是当任何类发生改变时,通过JVM类加载的方式加载到虚拟机上,这样就不需要我们重启Application类了
做法:
<!--热部署-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
另外确保存在以下插件
<plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin>
2)File-Setting-compiler-勾上Build project automatically
快捷键ctrl + shift + alt + /,选择Registry,勾上 Compiler autoMake allow when app running
当我们修改类的时候就可以看到控制台自动重启
server.port=8087
server.servlet.context-path=/springboot
标签:快捷 热部署 dev style uil tools ica setting compile
原文地址:https://www.cnblogs.com/wutongshu-master/p/10867458.html