spring学习笔记02-spring-bean创建的细节问题
- 三种创建Bean对象的方式
- Bean的作用范围
- 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"xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsd"><!--把对象的创建交给spring来管理--><!--spring对bean的管理细节1.创建bean的三种方式2.bean对象的作用范围3.bean对象的生命周期--><!--创建Bean的三种方式 --><!-- 第一种方式:使用默认构造函数创建。在spring的配置文件中使用bean标签,配以id和class属性之后,且没有其他属性和标签时。采用的就是默认构造函数创建bean对象,此时如果类中没有默认构造函数,则对象无法创建。<bean id="accountService" class="com.itheima.service.impl.AccountServiceImpl"></bean>--><!-- 第二种方式: 使用普通工厂中的方法创建对象(使用某个类中的方法创建对象,并存入spring容器)<bean id="instanceFactory" class="com.itheima.factory.InstanceFactory"></bean><bean id="accountService" factory-bean="instanceFactory" factory-method="getAccountService"></bean>--><!-- 第三种方式:使用工厂中的静态方法创建对象(使用某个类中的静态方法创建对象,并存入spring容器)<bean id="accountService" class="com.itheima.factory.StaticFactory" factory-method="getAccountService"></bean>--><!-- bean的作用范围调整bean标签的scope属性:作用:用于指定bean的作用范围取值: 常用的就是单例的和多例的singleton:单例的(默认值)prototype:多例的request:作用于web应用的请求范围session:作用于web应用的会话范围<bean id="accountService" class="com.itheima.service.impl.AccountServiceImpl" scope="prototype"></bean>--><!-- bean对象的生命周期单例对象出生:当容器创建时对象出生活着:只要容器还在,对象一直活着死亡:容器销毁,对象消亡总结:单例对象的生命周期和容器相同多例对象出生:当我们使用对象时spring框架为我们创建活着:对象只要是在使用过程中就一直活着。死亡:当对象长时间不用,且没有别的对象引用时,由Java的垃圾回收器回收--><bean id="accountService" class="com.itheima.service.impl.AccountServiceImpl"scope="prototype" init-method="init" destroy-method="destroy"></bean>
</beans>
相关代码:
ps:关于Bean的创建第二种,第三种方法适用于在无法修改源码的情况下,比如当我们引用别人写好的jar包,此时这个jar包中可能没有相关的构造函数,但是有其他的返回对象的方法。
- 创建bean的第二种方式,“使用普通工厂中的方法创建对象”中的“普通工工厂”
package com.itheima.factory;import com.itheima.service.IAccountService;
import com.itheima.service.impl.AccountServiceImpl;/*** 模拟一个工厂类(该类可能是存在于jar包中的,我们无法通过修改源码的方式来提供默认构造函数)*/
public class InstanceFactory {public IAccountService getAccountService(){return new AccountServiceImpl();}
}
- 创建bean的第三种方式,“使用工厂中的静态方法创建对象”中的“静态工厂”
package com.itheima.factory;import com.itheima.service.IAccountService;
import com.itheima.service.impl.AccountServiceImpl;/*** 模拟一个工厂类(该类可能是存在于jar包中的,我们无法通过修改源码的方式来提供默认构造函数)*/
public class StaticFactory {public static IAccountService getAccountService(){return new AccountServiceImpl();}
}