标签:main group 原理 free cache lang classpath optional app
深层原理是使用了两个ClassLoader,一个Classloader加载那些不会改变的类(第三方Jar包),另一个ClassLoader加载会更改的类,称为restart ClassLoader,这样在有代码更改的时候,原来的restart ClassLoader 被丢弃,重新创建一个restart ClassLoader,由于需要加载的类相比较少,所以实现了较快的重启时间。
我们这里采用devtools的方式实现热部署,首先在pom.xml中添加依赖
<!--devtools热部署-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
<scope>runtime</scope>
</dependency>
<scope></scope>
标签中需要设置成runtime。如果设置成true会对整个项目进行重启。而不是热部署在application.yml中配置一下devtools
spring:
devtools:
restart:
enabled: true #设置开启热部署
additional-paths: src/main/java #重启目录
exclude: WEB-INF/**
freemarker:
cache: false #页面不加载缓存,修改即时生效
标签:main group 原理 free cache lang classpath optional app
原文地址:https://www.cnblogs.com/jiezao/p/13654619.html