Intellij IDEA实现springboot热部署过程解析

网友投稿 274 2022-11-24


Intellij IDEA实现springboot热部署过程解析

对于springboot热部署貌似是这样的,首先要设置idea相关配置

导航栏 File -> Settings -> Build,Execution,Deployment -> Compiler 选择Build project automatically 打勾 如下图所示

接着Ctrl+Shift+Alt+/ 快捷键选择Registry会弹出如下图

在红色选择的一行打勾,就完成了这步骤。

接着开始配置pom.xml文件

org.springframework.boot

spring-boot-devtools

true

org.springframework.boot

spring-boot-maven-plugin

true

org.springframework.boot

spring-boot-maven-plugin

true

pom文件也配置好了,就开始配置application.yml (或者 application.properties)

#THYMELEAF

spring:

thymeleaf:

cache: false #这里一定要设置false

aTKIDNw prefix: classpath:/thymeleaf/

suffix: .html

mode: HTML5

encoding: UTF-8

devtools:

    restart:

      #热部署生效true

      enabled: true

   #设置重启的目录

   additional-paths: resources/**,static/**,templates/**

      #该目录下的内容修改不重启

  exclude: data/**

配置完之后,基本上就可以aTKIDNw运行了,还有最后要记得浏览器要设置 禁止缓存


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Springboot web项目打包实现过程解析
下一篇:利用Spring Boot创建docker image的完整步骤
相关文章

 发表评论

暂时没有评论,来抢沙发吧~