Spring Boot devtools热部署
在实际项目开发中,开发的过程中一定会修改代码,如果每次修改代码都需要重新启动下,那会让人吐血的。这里我们使用Spring-boot-devtools进行热部署。Spring Boot官方给出的一段话:Spring Boot应用程序只是普通的Java应用程序,JVM热加载本应开箱即用的,但JVM热加载限制字节码大小。更完整的解决方案可以使用JRebel或者Spring-boot-devtools。spring-boot-devtools模块还包括支持快速应用程序重启。
这里我们使用的是Spring-boot-devtools进行热部署,JRebel是收费的这里就不叙述了。
1.devtools介绍
spring-boot-devtools会检测类路径的变化,当类路径内容发生变化后会自动重启应用程序。Spring Boot的重启技术通过使用两个类加载器。由于使用的是双类加载机制重启会非常快,如果启动比较慢,那就只能使用重新加载技术JRebel了。
(1)base classloader (Base类加载器):加载不改变的Class,例如:第三方提供的jar包。
(2)restart classloader(Restart类加载器):加载正在开发的Class。
到这里相信大家知道了,为什么重启很快,因为重启的时候只是加载了在开发的Class,没有重新加载第三方的jar包。
2.devtools使用
(1)在pom.xml加入devtools的依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
(2)在pom.xml加入Spring Boot 插件
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
(3)到这里就好了,启动应用修改下试试吧。
注意:页面热加载的时候,别忘记了将缓存设置为false,例如以下参数默认设置:
(1)spring.freemarker.cache=false # Enable template caching.
(2)spring.thymeleaf.enabled=true # Enable MVC Thymeleaf view resolution.
(3)spring.velocity.cache= # Enable template caching.
默认情况下这些文件夹中 /META-INF/maven, /META-INF/resources ,/resources ,/static ,/public or /templates 发生变化,是不会重新启动,但是会出发重新加载,如果想定制的话,Spring Boot为我们提供了一个参数spring.devtools.restart.exclude,例如排除/static和/public目录,如下:
spring.devtools.restart.exclude=static/**,public/**
如果想在默认排除的基础上,增加排除其他的文件夹,可以使用:spring.devtools.restart.additional-exclude。
如果重新启动您的应用程序或重新加载修改文件时未在类路径中,可以使用spring.devtools.restart.additional-paths指定路径加入监听。
3.禁用devtools
禁用devtools,在application.properties文件中加入属性:spring.devtools.restart.exclude=false,或者通过编程式禁用代码如下:
public static void main(String[] args) {
System.setProperty("spring.devtools.restart.enabled", "false");
SpringApplication.run(MyApp.class, args);
}
在实际情况中,可能有的jar包需要交给restart classloader来加载,可以在resources下新建:META-INF/spring-devtools.properties,例如在文件中加入:
restart.exclude.companycommonlibs=/mycorp-common-[\\w-]+\.jar
restart.include.projectcommon=/mycorp-myproj-[\\w-]+\.jar
=/mycorp-common-[\\w-]+\.jar
restart.include.projectcommon=/mycorp-myproj-[\\w-]+\.jar
注意:companycommonlibs是用户自定义的,Spring Boot只认restart.exclude或者restart.include前缀,后面是可以自行定义。