在之前的 文章 已經介紹可以利用Java反射機制 和 工廠方法(Factory Method)的方法來在bean config file裡 配置beans
本文簡單介紹下第三種方法 FactoryBean。
FactoryBean 用法可以與Factory Method有點類似,我們同樣需要寫1個工廠類, 只不過spring提供了1個叫做FactoryBean的接口。
我們的工廠類必須實現這個接口。
package com.home.factoryBean;
public class Car {
private int id;
private String name;
private int price;
@Override
public String toString() {
return "Car [id=" + id + ", name=" + name + ", price=" + price + "]";
}
public Car(){
}
public Car(int id, String name, int price) {
super();
this.id = id;
this.name = name;
this.price = price;
}
}
package com.home.factoryBean;
import org.springframework.beans.factory.FactoryBean;
public class CarBeanFactory implements FactoryBean<Car>{
private int id;
private String brand;
public void setId(int id) {
this.id = id;
}
public void setBrand(String brand) {
this.brand = brand;
}
@Override
public Car getObject() throws Exception {
return new Car(id, brand, 0);
}
@Override
public Class<?> getObjectType() {
return Car.class;
}
@Override
public boolean isSingleton() {
return true;
}
}
首先上面這個工廠必須實現Spring提供的FactoryBean這個接口。
然後重寫裡面的3個方法
getObject() -> 這個就是你想利用工廠類生產的bean對象, 通常在裡面new 1個 對象就ok
getObjectType() -> 你必須指明上面bean的對象的class
isSingleton() -> 這個方法決定了這個bean是否單例的。
<!--
FactroyBean:
* We should specify the full class name of Factory to the property "class="
* Actually this bean will return the object from the method "getObject" of the Factory class.
-->
<bean id="car1" class="com.home.factoryBean.CarBeanFactory">
<property name="id" value="1"></property>
<property name="brand" value="Ford"></property>
</bean>
裡面bean的配置寫法跟反射機制的十分類似。
但是一般利用反射機制的bean配置, class= 的值就是bean對象的全類名, 但是利用FactoryBean的方式中, class= 必須是工廠類的全類名。
一但這個工廠類實現了FactoryBean接口, 那麼這個bean item 返回的就是它裡面的getObject()方法return的對象。
package com.home.factoryBean;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class FactoryBeanClient {
public static void f(){
ApplicationContext ctx = new ClassPathXmlApplicationContext("bean-FactoryBean.xml");
Car car1 = (Car)ctx.getBean("car1");
System.out.println(car1);
}
Jun 04, 2016 1:26:00 PM org.springframework.context.support.ClassPathXmlApplicationContext prepareRefresh
INFO: Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@627e9505: startup date [Sat Jun 04 13:26:00 CST 2016]; root of context hierarchy
Jun 04, 2016 1:26:00 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
INFO: Loading XML bean definitions from class path resource [bean-FactoryBean.xml]
Car [id=1, name=Ford, price=0]