Live2D

记一次SpringBoot热更新配置

1. pom.xml

<dependency>
	<groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <optional>true</optional>
    <scope>true</scope>
</dependency>
<plugin>
    <!--热部署配置-->
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <configuration>
    	<fork>true</fork>
    </configuration>
</plugin>

2. idea配置

File -> Settings -> Compiler 勾选 √ Build Project automatically

3. Registry

  • ctrl + shift + alt + /
  • 选择Registry
  • √ Compiler autoMake allow when app running

使用效果:

检测到更新会自动重启服务,但是使用起来感觉并不是很便捷

posted @ 2020-09-07 15:04  AcmeZhang  阅读(1766)  评论(0编辑  收藏  举报