File---settings
Ctrl+Shift+Alt+/ ----- Registry
SpringBoot项目配置
在需要进行热部署的SpringBoot应用中添加依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>
配置SpringBoot的Maven插件
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
</configuration>
</plugin>
配置SpringBoot应用的变化更新策略