在idea的使用中写html的文件时候总是需要去重启浪费了很多时间,可通过
Spring-boot-devtools + ideal 配置idea的热部署。
一、maven依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<version>x.x.x</version>
</dependency>
二、Ideal设置
(1) File-Settings-Compiler勾选 Build Project automatically
。
(2) 快捷键ctrl + shift + alt + /
, 选择Registry
,勾上Compiler autoMake allow when app running
。
网友评论