欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

IDEA SpringBoot 热部署+html修改无需make自动刷新

程序员文章站 2022-05-03 22:08:08
...

maven 

      <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <optional>true</optional>
        </dependency>

 

1.

IDEA SpringBoot 热部署+html修改无需make自动刷新

 

2.然后 Shift+Ctrl+Alt+/,选择Registry

3.IDEA SpringBoot 热部署+html修改无需make自动刷新

 

ok了,重启一下项目,然后改一下类里面的内容,IDEA就会自动去make了。

补充:

以上内容是网上大部分文章写的步骤,那发现并非一定实现(似乎和spring boot的版本有关系)。如果按照以上流程配置后

修改Html后ctrl+s  内容依然没变,application.yml加上以下配置即可

spring:
  devtools:
      restart:
	    #需要实时更新的目录
        additional-paths: resources/**,static/**,templates/**

 

转载于:https://my.oschina.net/yejunxi/blog/845752