Spring :实例化Bean的三种方式

1. 调用类的无参构造函数,如果没有无参构造函数则不能成功创建

<?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">

    <!-- 第一种方式:默认情况下调用类的无参构造函数,如果没有无参构造函数则不能成功创建-->
    <bean id="accountDao" class="xust.student.dao.Impl.AccountDaoImpl"></bean>
</beans>

2.使用Spring管理静态工厂

  • 静态工厂类
package xust.student.factory;

import xust.student.service.AccountService;
import xust.student.service.Impl.AccountServiceImpl;

public class StaticFactory {
    public static AccountService createAccountService(){
        return new AccountServiceImpl();
    }
}

  • bean.xml
<?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容器
        id: 指定bean的id,用于从容器中获取对象
        class: 指定静态工厂的全限定类名
        factory-method: 指定生产对象的静态方法
   -->
	<bean id="accountService" class="xust.student.factory.StaticFactory" factory-method="createAccountService"></bean>
</beans>

3.spring管理实例工厂

  • 实例工厂
package xust.student.factory;

import xust.student.service.AccountService;
import xust.student.service.Impl.AccountServiceImpl;

public class Factory {
    public AccountService createAccountService(){
        return new AccountServiceImpl();
    }
}

  • bean.xml
<?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管理实例工厂-->
    <!--
        1. 先把工厂的创建交给Spring来管理
        2. 使用工厂的bean来调用里面的方法
            factory-bean :用于指定实例工厂bean的id
            factory-method:用于指定实例工厂中创建对象的方法
    -->
    <bean id="Factory" class="xust.student.factory.Factory"></bean>
    <bean id="accountService" factory-bean="Factory" factory-method="createAccountService"></bean>
</beans>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值