在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+/