Springboot 热启动热部署

Posted 思旭华诞

tags:

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

一、springloader实现热部署

     运行方法一:使用spring-boot:run

       此方法会遇到问题,当关闭程序再重启的提示Tomcat端口号被占用   运行方法二:run as-java application    

此方法解决了以上问题,但是当添加新的方法时,就无法进行热部署;
    <dependency>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-devtools</artifactId>
         <optional>true</optional>
    </dependency>
  2、添加spring-boot-maven-plugin
    <plugin>
           <groupId>org.springframework.boot</groupId>
           <artifactId>spring-boot-maven-plugin</artifactId>
           <configuration>
               <fork>true</fork>
           </configuration>
       </plugin>
  3、idea设置
   devtools热部署参考地址 https://blog.csdn.net/xusheng_Mr/article/details/78771746


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

在SpringBoot中使用热部署(DevTools)

SpringBoot热部署

Springboot 热启动热部署

为了使用springboot热部署功能,在使用创建向导时应选

SpringBoot工程热部署

Springboot热部署