配置文件:
<?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来管理-->
<!--id:获取是的唯一标志,class:反射要创建的权限定类名-->
<!--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容器)
instanceFactory为工厂对象,accountService使用工厂对象instanceFactory(factory-bean="instanceFactory")
中的getAccountService方法创建对象(factory-method="getAccountService")
<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>
</beans>
第二种方法对应的类:
package com.itheima.factory;
/*
* 模拟一个工厂类(该类可能是存在于jar包中的,我们无法通过修改源码的方式来提供默认构造函数)
*
* */
import com.itheima.service.IAccountService;
import com.itheima.service.impl.AccountServiceImpl;
public class InstanceFactory {
public IAccountService getAccountService() {
return new AccountServiceImpl();
}
}
第三种方法对应的类:
package com.itheima.factory;
/*
* 模拟一个工厂类(该类可能是存在于jar包中的,我们无法通过修改源码的方式来提供默认构造函数)
*
* */
import com.itheima.service.IAccountService;
import com.itheima.service.impl.AccountServiceImpl;
public class StaticFactory {
public static IAccountService getAccountService() {
return new AccountServiceImpl();
}
}
原文:https://www.cnblogs.com/kingchen/p/12961267.html