SpringBoot配置devtools实现热部署教程
时间:1970-01-01 | 作者:网络 | 阅读:146spring为开发者提供了一个名为spring-boot-devtools的模块来使Spring Boot应用支持热部署,提高开发者的开发效率,无需手动重启Spring Boot应用。
devtools的原理
深层原理是使用了两个ClassLoader,一个Classloader加载那些不会改变的类(第三方Jar包),另一个ClassLoader加载会更改的类,称为restart ClassLoader,这样在有代码更改的时候,原来的restart ClassLoader 被丢弃,重新创建一个restart ClassLoader,由于需要加载的类相比较少,所以实现了较快的重启时间。
使用需要添加以下的配置:
<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <fork>true</fork> </configuration> </plugin> </plugins> </build>
福利游戏
相关文章
更多精选合集
更多大家都在玩
大家都在看
更多-
- 恋与制作人许墨心悦地怎么样
- 时间:2025-01-18
-
- 恋与制作人周棋洛亲密爱人怎么样
- 时间:2025-01-18
-
- 星露谷物语农场电脑配方解锁技巧解析
- 时间:2025-01-18
-
- 星露谷物语提升运气食谱具体解析
- 时间:2025-01-18
-
- 星露谷物语运气影响因素详细一览
- 时间:2025-01-18
-
- 《碧海黑帆》发布更新档 调整玩法并修复多处BUG
- 时间:2025-01-18
-
- 闪耀暖暖扶光落九乌怎么样
- 时间:2025-01-18
-
- 王者荣耀弈星万物之道怎么样
- 时间:2025-01-18