car.java
package factoryBean;
public class car {
private String brand;
private double price;
public car(String brand, double price) {
super();
this.brand = brand;
this.price = price;
}
public String getBrand() {
return brand;
}
public void setBrand(String brand) {
this.brand = brand;
}
public double getPrice() {
return price;
}
public void setPrice(double price) {
this.price = price;
}
@Override
public String toString() {
return "car [brand=" + brand + ", price=" + price + "]";
}
}
CarFactoryBean.java
package factoryBean;
import org.springframework.beans.factory.FactoryBean;
import org.springframework.cglib.proxy.Factory;
public class CarFactoryBean implements FactoryBean<car>{
private String brand;
public void setBrand(String brand) {
this.brand = brand;
}
//返回bean的对象
@Override
public car getObject() throws Exception {
// TODO Auto-generated method stub
return new car(brand,500000);
}
//返回bean的类型
@Override
public Class<?> getObjectType() {
// TODO Auto-generated method stub
return car.class;
}
@Override
public boolean isSingleton() {
// TODO Auto-generated method stub
return true;
}
}
Main.java
package factoryBean;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
ApplicationContext ctx=new ClassPathXmlApplicationContext("factoryBean.xml");
car car=(factoryBean.car) ctx.getBean("car");
System.out.println(car);
}
}
factoryBean.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">
<bean id="car" class="factoryBean.CarFactoryBean">
<property name="brand" value="BWM"></property>
</bean>
</beans>
运行结果:
car [brand=BWM, price=500000.0]
通过factoryBean来配置bean的实例
class:指向factoryBean的全类名
property:配置factoryBean的属性
但实际上返回的实例确实factoryBean的getObject()方法返回的实例!