码迷,mamicode.com
首页 > 其他好文 > 详细

ideal中配置热更新问题:配置好以后前端无法更新

时间:2020-06-30 13:18:49      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:source   running   sgi   resource   clu   dev   选项   排除   prope   

1.pom文件下配置依赖:

<!--    热跟新    -->
<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-devtools</artifactId>
  <optional>true</optional>
</dependency>

<plugin>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-maven-plugin</artifactId>
  <!-- 添加项 -->
  <configuration>
  	<fork>true</fork>
  </configuration>
</plugin>

2.在application.properites中配置

#开启或关闭
spring.devtools.restart.enabled=true
#添加那个目录的文件需要restart
spring.devtools.restart.additional-paths=src/main/java
#排除那个目录的文件不需要restart
spring.devtools.restart.exclude=static/**,public/**

#禁止thymeleaf缓存(建议:开发环境设置为false,生成环境设置为true)
spring.thymeleaf.cache=false

3.在settings>Compiper>Build inde.... √

4.ctr+shift+alt+/ ->Resgis...> ...app.running √

5.【前端项目无法更新时是此处为修改】Eidt Configration > server > On Update 和On frame ...选项都选择Update classess and resources

ideal中配置热更新问题:配置好以后前端无法更新

标签:source   running   sgi   resource   clu   dev   选项   排除   prope   

原文地址:https://www.cnblogs.com/intelwisd/p/13213025.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!