Python 官方文档:入门教程 => 点击学习
目录一、延迟初始化Bean二、创建扫描索引三、升级SpringBoot新版本Spring Boot 程序优化 一、延迟初始化Bean 一般在 springBoot 中都拥有很多的耗时
一般在 springBoot 中都拥有很多的耗时任务,比如数据库建立连接、初始线程池的创建等等,我们可以延迟这些操作的初始化,来达到优化启动速度的目的。Spring Boot 2.2 版本后引入 spring.main.lazy-initialization
属性,配置为 true 会将所有 Bean 延迟初始化。
spring:
main:
lazy-initialization: true
Spring5 之后提供了spring-context-indexer
功能,通过提前生成@ComponentScan
的扫描索引,解决在类过多时导致扫描速度过慢的问题。
我们只需要将依赖引入,然后在启动类上使用@Indexed
注解即可。这样在程序编译打包之后会生成META-INT/spring.components
文件,当执行@ComponentScan
扫描类时,会读取索引文件,提高扫描速度。
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-indexer</artifactId>
<optional>true</optional>
</dependency>
@Indexed
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
SpringBoot每次升级都会对性能进行一些优化,目前最新版已经来到了3
,Spring官方对性能优化做的已经非常好,能大大提高程序的编译以及启动速度。
到此这篇关于优化SpringBoot程序启动速度的实现的文章就介绍到这了,更多相关优化SpringBoot程序启动速度内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: 优化SpringBoot程序启动速度的实现
本文链接: https://lsjlt.com/news/177807.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0