Spring容器的懒加载

Posted 梦里下起了雨夹雪

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring容器的懒加载相关的知识,希望对你有一定的参考价值。

1、单例模式的对象什么时候被创建?是使用getBean()方法获取对象的时候创建呢?还是创建spring容器的时候创建?

我们可以测试一下:

先定义一个example类,为其定义一个无参数的构造方法:

public class ExampleBean {
   public ExampleBean() {
       System.out.println("创建了ExampleBean对象");
   }
   public void execute() {
       System.out.println("调用了execute方法");
   }
   public void init() {
       System.out.println("正在执行初始化方法中的操作。。。。");
   }
   public void destroy() {
       System.out.println("对象资源释放。。。");
   }
}

我们在applicationContext.xml文件中指定其为单例模式:

<!-- 创建一个ExampleBean对象 -->
    <bean id ="example" class="com.zlc.test.ExampleBean" init-method = "init"
     destroy-method="destroy" scope="singleton">
    </bean>

运行以下的代码:

public static void main(String[] args) {
        String conf = "applicationContext.xml";
        //创建容器对象
        AbstractApplicationContext ac = new ClassPathXmlApplicationContext(conf); 
               
    }

运行结果为:

由此我们可以看出,单例模式的对象,是在创建spring容器时就会马上创建的。但是非单例模式的对象并不会在此时马上创建

我们也可以设置单例模式的对象延迟加载,并不在创建spring容器时马上创建,而是在需要使用时再创建,也就是使用getBean()方法获取时再加载,设置延迟加载的方法是:

<bean lazy-init="true"></bean>

添加这个属性后的xml配置如下所示;

 <bean id ="example" class="com.zlc.test.ExampleBean" init-method = "init"
     destroy-method="destroy" scope="singleton" lazy-init="true">

加了这样的设置以后,就不会在创建spring容器时马上创建单例模式的对象了

 还可以为一组bean设置懒加载,初始化方式等:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd" 
default-lazy-init
="true" default-init-method="init"> <bean id = "computer" class="com.zlc.test.Computer"> <constructor-arg index="0" ref="date"></constructor-arg> </bean> <bean id="date" class="java.util.Date"> </bean> </beans>

这样设置,即可为<beans></beans>中包含的bean统一指定懒加载方式以及初始化方法等。

以上是关于Spring容器的懒加载的主要内容,如果未能解决你的问题,请参考以下文章

Spring懒加载机制

Hibernate的懒加载session丢失解决方法

JavaScript使用纯JS实现多张图片的懒加载Lazy(附源码)

关于swift中的懒加载

vue+webpack2实现路由的懒加载

(Object-C)学习笔记 --OC的懒加载和单例方法