在项目开发的过程中,想必大家知道,类 Eclipse 型 IDE 工具,都有代码自动编译的选项,平时开发都是打上勾的,具体为:Project 下的 Build Automatically。
而开发中有个需求就是,只要自己修改了代码并保存,除了可以自动编译,最好是能自动重启应用,直接测试。否则,还需要启动,甚者是先停止,再启动,特别繁琐。
在 Spring Boot 中,自动重启时可以配置的,可以通过官方提供的插件直接搞定,接下来开始配置。
一、修改 pom 文件。
添加依赖包 spring-boot-devtools,添加插件配置。
原理:
spring-boot-devtools是一个为开发者服务的模块,其中有个很重要的功能就是自动应用代码更改到最新的App上。
深层原理:
在发现代码有更改之后,重新启动应用。它使用了两个ClassLoader,一个加载那些不会改变的类,如第三方jar包;另一个加载会更改的类,称为restart ClassLoader,当代码改变时,原来的rc被丢弃掉,重新创建一个rc。
devtools会监听classpath下的文件变动,并会立即重启程序,由于采用虚拟机机制,该项重启时很快。
devtools也可以实现页面热部署,直接在 application.properties 中配置:spring.thymeleaf.cache=false。注意:不同的模板引擎,配置是不一样的,这里举例只是对 ThymeLeaf 模板引擎的配置。
代码具体如下:
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.menglanglang</groupId>
- <artifactId>test-springboot</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <packaging>jar</packaging>
- <name>test-springboot</name>
- <url>http://blog.csdn.net/tzhuwb</url>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <!-- 该依赖包提供了MVC、AOP等的依赖包 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- <version>1.4.2.RELEASE</version>
- </dependency>
- <!-- 添加Spring Boot Devtools依赖包 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-devtools</artifactId>
- <version>1.4.2.RELEASE</version>
- <optional>true</optional>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <!-- 这是Spring Boot Devtools Plugin的配置 -->
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <!-- 如果没有fork配置,可能devtools不会起作用,即不会restart -->
- <fork>true</fork>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <!-- Add Spring repositories -->
- <!-- (you don't need this if you are using a .RELEASE version) -->
- <repositories>
- <repository>
- <id>spring-snapshots</id>
- <url>http://repo.spring.io/snapshot</url>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </repository>
- <repository>
- <id>spring-milestones</id>
- <url>http://repo.spring.io/milestone</url>
- </repository>
- </repositories>
- <pluginRepositories>
- <pluginRepository>
- <id>spring-snapshots</id>
- <url>http://repo.spring.io/snapshot</url>
- </pluginRepository>
- <pluginRepository>
- <id>spring-milestones</id>
- <url>http://repo.spring.io/milestone</url>
- </pluginRepository>
- </pluginRepositories>
- </project>
二、测试该功能
启动应用,尝试修改 App.java 中的部分代码,保存,看看高大上的自动重启功能吧^^