热部署Devtools
在IDEA中配置热部署,不必每次修改代码后重启项目。
添加devtools配置到要热部署 的java项目中
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> <optional>true</optional> </dependency>
添加配置进聚合父类总工程的pom.xml里
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <fork>true</fork> <addResources>true</addResources> </configuration> </plugin> </plugins> </build>
开启自动编译的选项
更新值
按快捷键,选择Registry,打勾框选项
ctrl+shift+Alt+/
重启IDEA,即可
本文来自博客园,作者:锦此,转载请注明原文链接:https://www.cnblogs.com/jinci2022/p/16799364.html