Spring之 IOC 中 bean 标签和管理对象细节(二)

本文详细介绍了Spring的IOC容器中bean标签的使用,包括bean的id、class、scope等属性,以及三种实例化Bean的方式:默认构造函数、普通工厂方法和静态工厂方法。同时,解释了bean的作用范围,如singleton、prototype、request、session和global-session。最后,讨论了bean的生命周期,区分了单例和多例对象的生命周期特点。
摘要由CSDN通过智能技术生成

一、bean 标签

1.作用: 用于配置对象让 spring 来创建的。

2.属性:

  1. id:给对象在容器中提供一个唯一标识。用于获取对象。
  2. class:指定类的全限定类名。用于反射创建对象。默认情况下调用无参构造函数。
  3. scope:指定对象的作用范围。
  • singleton :默认值,单例的.
  • prototype :多例的.
  • request :WEB 项目中,Spring 创建一个 Bean 的对象,将对象存入到 request 域中.
  • session :WEB 项目中,Spring 创建一个 Bean 的对象,将对象存入到 session 域中.
  • global session :WEB 项目中,应用在 Portlet 环境.如果没有 Portlet 环境那么 globalSession 相当于 session.
  • init-method:指定类中的初始化方法名称。
  • destroy-method:指定类中销毁方法名称。

3.注意: 默认情况下它调用的是类中的无参构造函数。如果没有无参构造函数则不能创建成功。


二、实例化 Bean 的三种方式

1. 使用默认构造函数创建
2. 使用普通工厂中的方法创建对象(使用某个类中的方法创建对象,并存入spring容器)
3. 使用工厂中的静态方法创建对象(使用某个类中的静态方法创建对象,并存入spring容器)

<?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/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd">

    <!--把对象的创建交给spring来管理-->

    <!-- 第一种方式:使用默认构造函数创建。
     在spring的配置文件中使用bean标签,配以id和class属性之后,且没有其他属性和标签时。
     采用的就是默认构造函数创建bean对象,此时如果类中没有默认构造函数,则对象无法创建。
    -->
    <bean id="accountService" class="com.hzuxy.service.impl.AccountServiceImpl"></bean>


    <!-- 第二种方式: 使用普通工厂中的方法创建对象(使用某个类中的方法创建对象,并存入spring容器)-->
    <bean id="instanceFactory" class="com.hzuxy.factory.InstanceFactory"></bean>
    <!--定义工厂名和方法-->
    <bean id="accountService" factory-bean="instanceFactory" factory-method="getAccountService"></bean>


    <!-- 第三种方式:使用工厂中的静态方法创建对象(使用某个类中的静态方法创建对象,并存入spring容器)-->
    <bean id="accountService" class="com.hzuxy.factory.StaticFactory" factory-method="getAccountService"></bean>
 
</beans>

三、bean 的作用范围

bean标签的scope属性:
作用: 用于指定bean的作用范围
取值: 常用的就是单例的和多例的
singleton:单例的(默认值)
prototype:多例的
request:作用于web应用的请求范围
session:作用于web应用的会话范围
global-session:作用于集群环境的会话范围(全局会话范围),当不是集群环境时,它就是session

<?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/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd">

    <!--把对象的创建交给spring来管理-->

    <bean id="accountService" class="com.hzuxy.service.impl.AccountServiceImpl" scope="prototype"></bean>

</beans>

四、bean 的生命周期

单例对象
出生:当容器创建时对象出生
活着:只要容器还在,对象一直活着
死亡:容器销毁,对象消亡
总结:单例对象的生命周期和容器相同

多例对象
出生:当我们使用对象时spring框架为我们创建
活着:对象只要是在使用过程中就一直活着。
死亡:当对象长时间不用,且没有别的对象引用时,由Java的垃圾回收器回收

<?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/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd">

    <!--把对象的创建交给spring来管理-->
    
    <bean id="accountService" class="com.hzuxy.service.impl.AccountServiceImpl"
          scope="prototype" init-method="init" destroy-method="destroy"></bean>
     
</beans>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值