springBoot开启热部署

Posted 徐杰

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springBoot开启热部署相关的知识,希望对你有一定的参考价值。

springBoot开启热部署

这里使用devtools工具开启热部署

〇、搭建springbboot基础环境

一、添加依赖

<dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-devtools</artifactId>
          <optional>true</optional>
          <scope>true</scope>
</dependency>

二、修改pom.xml文件的 spring-boot-maven-plugin 插件为:

<!--maven插件,为springboott提供执行maven的支持 -->
<plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
        <configuration>
            <fork>true</fork>   <!--这里必须这样设置-->
        </configuration>
</plugin>

注意点:

注意: 页面如果用了thymeleaf模板 ,需要修改配置文件为:(其他模板也可能要做类似配置,配置原理都是关闭缓存,写法不同)
spring.thymeleaf.cache=false


以上是关于springBoot开启热部署的主要内容,如果未能解决你的问题,请参考以下文章

IDEA开发SpringBoot项目开启自动编译(热部署-修改java代码时,自动重启服务器)

IDEA中开启热部署

IDEA中开启热部署

SpringBoot项目在IDEA中开启热部署

SpringBoot.05.SpringBoot本地测试与热部署

SpringBoot.05.SpringBoot本地测试与热部署