1,自动保存 File > setting 去掉下图勾选
2,未保存文件星号提示 File > Settings
3,spring boot 项目 热部署
3.1,pom文件添加依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> </dependency>
3.2,file > setting, 勾选下图选项
3.3,配置文件添加如下配置
spring freemarker: template-loader-path: classpath:/statics # 模板默认加载路径 suffix: .ftl # 模板的后缀名 check-template-location: true # 是否检查模板路径是否存在 charset: UTF-8 # 编码格式 content-type: text/html # 响应头信息 cache: false # 是否开启模板缓存 settings: template_update_delay: 0 # 刷新模板的时间间隔
3.4,help > find Action > 输入 Registry 选择第一项
2.5,找到并勾选下图选项,点击 close 后,重启 idea
原文地址:https://www.cnblogs.com/lovling/p/9420572.html
时间: 2024-11-07 05:36:15