java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > SpringBoot优化启动速度

SpringBoot优化启动速度的方法实现

作者:手把手入门

本篇文章主要介绍了SpringBoot优化启动速度的方法实现,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

一、yml中设置懒加载

spring:
  main:
    lazy-initialization: true

二、SpringBoot启动类中添加注解 @Indexed (Spring5才有该注解)

@Indexed
@EnableAsync
@RestController
@SpringBootApplication(exclude = {WxMaAutoConfiguration.class})
@EnableTransactionManagement
@MapperScan(basePackages = {"co.xuexi.modules.*.service.mapper", "co.xuexi.config"})
public class AdminRun {

以上两种对SpringBoot启动速度的优化都不高,只能提高20%左右

三、升级jdk到17

四、使用SpringBoot3

到此这篇关于SpringBoot优化启动速度的方法实现的文章就介绍到这了,更多相关SpringBoot优化启动速度内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家! 

您可能感兴趣的文章:
阅读全文