查看原文
其他

Spring Boot实现热部署

2017-11-26 javastack Java技术栈

QQ用得起来越少了,现在就加入300+技术微信群,公众号回复"微信群"即可加入。


在Spring Boot实现代码热部署是一件很简单的事情,代码的修改可以自动部署并重新热启动项目。

引用devtools依赖

  1. <dependency>

  2.    <groupId>org.springframework.boot</groupId>

  3.    <artifactId>spring-boot-devtools</artifactId>

  4.    <optional>true</optional>

  5. </dependency>

这样,当修改一个java类时就会热更新。

自定义配置热部署

以下配置用于自定义配置热部署,可以不设置。

  1. # 热部署开关,false即不启用热部署

  2. spring.devtools.restart.enabled: true

  3. # 指定热部署的目录

  4. #spring.devtools.restart.additional-paths: src/main/java

  5. # 指定目录不更新

  6. spring.devtools.restart.exclude: test/**

Intellij Idea修改

如果是idea,需要改以下两个地方:

1、勾上自动编译或者手动重新编译

File > Settings > Compiler-Build Project automatically

2、注册

ctrl + shift + alt + / > Registry > 勾选Compiler autoMake allow when app running

注意事项

1、生产环境devtools将被禁用,如java -jar方式或者自定义的类加载器等都会识别为生产环境。

2、打包应用默认不会包含devtools,除非你禁用SpringBoot Maven插件的 excludeDevtools属性。

3、Thymeleaf无需配置 spring.thymeleaf.cache:false,devtools默认会自动设置,参考完整属性。

https://github.com/spring-projects/spring-boot/blob/v1.5.7.RELEASE/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/env/DevToolsPropertyDefaultsPostProcessor.java

下面是devtools自动配置的部分源码:

  1. @Order(Ordered.LOWEST_PRECEDENCE)

  2. public class DevToolsPropertyDefaultsPostProcessor implements EnvironmentPostProcessor {

  3.    private static final Map<String, Object> PROPERTIES;

  4.    static {

  5.        Map<String, Object> properties = new HashMap<String, Object>();

  6.        properties.put("spring.thymeleaf.cache", "false");

  7.        properties.put("spring.freemarker.cache", "false");

  8.        properties.put("spring.groovy.template.cache", "false");

  9.        properties.put("spring.mustache.cache", "false");

  10.        properties.put("server.session.persistent", "true");

  11.        properties.put("spring.h2.console.enabled", "true");

  12.        properties.put("spring.resources.cache-period", "0");

  13.        properties.put("spring.resources.chain.cache", "false");

  14.        properties.put("spring.template.provider.cache", "false");

  15.        properties.put("spring.mvc.log-resolved-exception", "true");

  16.        properties.put("server.jsp-servlet.init-parameters.development", "true");

  17.        PROPERTIES = Collections.unmodifiableMap(properties);

  18.    }

4、devtools会在windows资源管理器占用java进程,在开发工具里面杀不掉,只能手动kill掉,不然重启会选成端口重复绑定报错。

关于boot-devtools更多详细用法,参考官方文档。

https://docs.spring.io/spring-boot/docs/current/reference/html/using-boot-devtools.html

推荐阅读



Spring Boot国际化支持

Spring Boot自动配置原理、实战

Spring Boot功能实战

阿里高级Java面试题(首发,70道,带详细答案)

2017派卧底去阿里、京东、美团、滴滴带回来的面试题及答案

Spring面试题(70道,史上最全)



  Java技术栈  
微信公众号:「Javastack

分享Java干货,高并发编程,热门技术教程,微服务及分布式技术,架构设计,区块链技术,人工智能,大数据,Java面试题,以及前沿热门资讯等。
 ▼长按二维码关注我们↓↓↓



您可能也对以下帖子感兴趣

文章有问题?点此查看未经处理的缓存