平日里开发项目中,修改了Java代码或者配置文件的时候,必须手动重启项目才能生效。所谓的热部署就是在你修改了后端代码后不需要手动重启,工具会帮你快速的自动重启是修改生效。其深层原理是使用了两个ClassLoader,一个Classloader加载那些不会改变的类(第三方Jar包),另一个ClassLoader加载会更改的类,称为restart ClassLoader,这样在有代码更改的时候,原来的restart ClassLoader 被丢弃,重新创建一个restart ClassLoader,由于需要加载的类相比较少,所以实现了较快的重启时间。

本文将介绍如何通过使用Spring-Boot-devtools来实现Spring Boot项目的热部署。IDE使用的是Eclipse Oxygen,并且使用Maven构建。

引入Devtools

搭建一个简单的Spring Boot项目,然后引入Spring-Boot-devtools:

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-devtools</artifactId>
  4. <optional>true</optional>
  5. </dependency>

devtools会监听classpath下的文件变动,并且会立即重启应用(发生在保存时机),因为其采用的虚拟机机制,该项重启是很快的。

在IDEA中生效还需要修改spring-boot-maven-plugin插件:

  1. <build>
  2. <plugins>
  3. <plugin>
  4. <groupId>org.springframework.boot</groupId>
  5. <artifactId>spring-boot-maven-plugin</artifactId>
  6. <configuration>
  7. <fork>true</fork>
  8. </configuration>
  9. </plugin>
  10. </plugins>
  11. </build>

并且开启Build Automatically:

Screen Shot 2021-10-14 at 5.35.36 PM.png

测试热部署

在入口类中添加一个方法,用于热部署测试:

  1. import org.springframework.boot.SpringApplication;
  2. import org.springframework.boot.autoconfigure.SpringBootApplication;
  3. import org.springframework.web.bind.annotation.RequestMapping;
  4. import org.springframework.web.bind.annotation.RestController;
  5. @RestController
  6. @SpringBootApplication
  7. public class DemoApplication {
  8. @RequestMapping("/")
  9. String index() {
  10. return "hello spring boot";
  11. }
  12. public static void main(String[] args) {
  13. SpringApplication.run(DemoApplication.class, args);
  14. }
  15. }

启动项目访问http://localhost:8080/,页面输出hello spring boot。

将方法的返回值修改为hello world并在保存的瞬间,应用便重启好了,刷新页面,内容也将得到更改。

所有配置

下面是所有Devtools在Spring Boot中的可选配置:

  1. # Whether to enable a livereload.com-compatible server.
  2. spring.devtools.livereload.enabled=true
  3. # Server port.
  4. spring.devtools.livereload.port=35729
  5. # Additional patterns that should be excluded from triggering a full restart.
  6. spring.devtools.restart.additional-exclude=
  7. # Additional paths to watch for changes.
  8. spring.devtools.restart.additional-paths=
  9. # Whether to enable automatic restart.
  10. spring.devtools.restart.enabled=true
  11. # Patterns that should be excluded from triggering a full restart.
  12. spring.devtools.restart.exclude=META-INF/maven/**,META-INF/resources/**,resources/**,static/**,public/**,templates/**,**/*Test.class,**/*Tests.class,git.properties,META-INF/build-info.properties
  13. # Whether to log the condition evaluation delta upon restart.
  14. spring.devtools.restart.log-condition-evaluation-delta=true
  15. # Amount of time to wait between polling for classpath changes.
  16. spring.devtools.restart.poll-interval=1s
  17. # Amount of quiet time required without any classpath changes before a restart is triggered.
  18. spring.devtools.restart.quiet-period=400ms
  19. # Name of a specific file that, when changed, triggers the restart check. If not specified, any classpath file change triggers the restart.
  20. spring.devtools.restart.trigger-file=

参考自: http://412887952-qq-com.iteye.com/blog/2300313