欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

FactroyBean方式配置bean

程序员文章站 2022-05-03 13:00:08
...

实现 FactoryBean 接口在 Spring IOC 容器中配置 Bean

Spring 中有两种类型的 Bean, 一种是普通Bean, 另一种是工厂Bean, 即FactoryBean. 

工厂 Bean 跟普通Bean不同, 其返回的对象不是指定类的一个实例, 其返回的是该工厂 Bean 的 getObject 方法所返回的对象

FactroyBean方式配置bean

package com.learn.spring.factory;

import org.springframework.beans.factory.FactoryBean;

import com.learn.spring.autowire.Car;

public class MyFactoryBean  implements  FactoryBean<Car>{
	
	/**
	 * 返回最终的对象.
	 */
	@Override
	public Car getObject() throws Exception {
		return new Car("QQ",30000);
	}
	/**
	 * 返回对象的类型
	 */
	@Override
	public Class<?> getObjectType() {
		// TODO Auto-generated method stub
		return Car.class;
	}
	/**
	 * 对象是否为单例
	 */
	@Override
	public boolean isSingleton() {
		// TODO Auto-generated method stub
		return true;
	}

}

 

<?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">
 
	 <!-- FactoryBean的方式来配置bean
	 	最终的对象是由getObject方法来进行返回的。
	 -->
	 <bean id="car2" class="com.learn.spring.factory.MyFactoryBean"></bean>

</beans>
package com.learn.spring.factory;

import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.learn.spring.autowire.Car;

public class Main {
	public static void main(String[] args) {
		ClassPathXmlApplicationContext ctx = 
				new ClassPathXmlApplicationContext("spring-factory.xml");

		Car car2 = (Car) ctx.getBean("car2");
		System.out.println(car2);
	}
}