SpringBoot开发热部署(无需重启应用)

(一)、使用spring提供的devtools
Spring Boot提供了一个名为spring-boot-devtools的模块来使应用支持热部署,提高开发者的开发效率,无需手动重启Spring Boot应用。虽然平时开发web项目过程中,改动项目启重启总是报错;但springBoot对调试支持很好,修改之后可以实时生效,需要添加以下的配置:


  
  1. <dependencies>
  2.     <dependency>
  3.         <groupId>org.springframework.boot</groupId>
  4.         <artifactId>spring-boot-devtools</artifactId>
  5.         <optional>true</optional>
  6.     </dependency>
  7. </dependencies>
  8.  
  9. <build>
  10.     <plugins>
  11.         <plugin>
  12.             <groupId>org.springframework.boot</groupId>
  13.             <artifactId>spring-boot-maven-plugin</artifactId>
  14.             <configuration>
  15.                 <fork>true</fork>
  16.             </configuration>
  17.         </plugin>
  18.     </plugins>
  19. </build>


#热部署生效:在配置文件application.yml中添加 :


  
  1. debug: true
  2. spring:
  3.   devtools:
  4.     restart:
  5.       enabled: true  #设置开启热部署
  6.   freemarker:
  7.     cache: false    #页面不加载缓存,修改即时生效


(二)、开发工具idea中使用JRebel插件
1、点击File -> Settings -> Plugins,如下图:搜索JRebel安装

补充一下快捷使用:(可以使用快捷键Ctrl+Alt+S打开设置)

                                 (还可以使用快捷命令Ctrl+Shift+A输入settings)

2、重启idea,右上角即出现快捷按钮,分别是run、debug模式

或者右键springboot的启动类:

又或者使用spring的运行面板:

 

本文转载于《SpringBoot开发热部署(无需重启应用)》,谢谢博主!

文章来源: blog.csdn.net,作者:轻狂书生FS,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/LookForDream_/article/details/86687594

(完)