注解说明

  • 使用注解: @Lazy
  • 效果:一般情况下,Spring容器在启动时会创建所有的Bean对象,使用@Lazy注解可以将Bean对象的创建延迟到第一次使用Bean的时候

引入步骤

在类上加入@Lazy或者@@Lazy(value=true)

示例代码

完整参考代码github

Bean对象在容器启动时创建

通过代码结果打印可以看出,在Spring容器启动中,就执行了MyLazy对象的创建动作。

package com.markey.com.markey.annotations.Lazy;

import org.springframework.stereotype.Component;

@Component
public class MyLazy {

    public MyLazy() {
        System.out.println("i am construct method of MyLazy");
    }

    public void sayHello() {
        System.out.println("hello, i am MyLazy");
    }
}
package com.markey.annotations;

import com.markey.com.markey.annotations.Lazy.MyLazy;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)
@SpringBootTest
public class MyLazyTest {

    @Autowired
    MyLazy myLazy;

    @Test
    public void MyLazyTest() {
        myLazy.sayHello();
    }
}

没有懒加载

使用@Lazy,Bean对象在第一次使用时创建

通过代码结果打印可以看出,在调用MyLazy对象的方式时,才执行了MyLazy的构造方法

package com.markey.com.markey.annotations.Lazy;

import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Component;

@Component
@Lazy
public class MyLazy {

    public MyLazy() {
        System.out.println("i am construct method of MyLazy");
    }

    public void sayHello() {
        System.out.println("hello, i am MyLazy");
    }
}

懒加载

Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐