idea下springboot 热部署配置

1.pom.xml文件添加依赖


   org.springframework.boot
   spring-boot-devtools
   runtime
   
   true

2.application.yml中添加配置

spring:
  devtools:
    restart:
      enabled: true
      additional-paths: srcc/main/java
  freemarker:
    cache: false

3.idea的setting中开启自动编译

idea下springboot 热部署配置_第1张图片

4.Shift+Ctrl+Alt+/,选择Registry,勾选下面的选项

idea下springboot 热部署配置_第2张图片

你可能感兴趣的:(springboot系列教程)