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

Spring 静态工厂方法及实例工厂方法配置bean

程序员文章站 2022-05-23 15:05:19
...

通过调用静态工厂方法创建Bean

调用静态工厂方法创建Bean是将对象创建的过程封装到静态方法中。当客户端需要对象时,只需要简单地调用静态方法,而不关心创建对象的细节。要声明通过静态方法创建的Bean,需要在Bean的class属性里指定拥有该工厂的方法的类,同时在factory-method属性里指定工厂方法的名称。最后,使用<constructor-arg>元素为该方法传递方法参数。

下面代码给出一个例子,调用DateFormat中的getDateInstance静态方法来创建Bean。

<bean id="dataformat" class="java.text.DateFormat" factory-method="getDateInstance">
    	<constructor-arg value="2"></constructor-arg>
</bean>

通过调用实例工厂方法创建Bean

实例工厂方法:将对象的创建过程封装到另外一个对象实例的方法里。当客户端需要请求对象时,只需要简单的调用该实例方法而不需要关心对象的创建细节。要声明通过实例工厂方法创建的Bean

  • 在Bean的factory-bean属性里指定拥有该工厂方法的Bean
  • factory-method属性指定该工厂方法的名称
  • 使用constructor-arg元素为工厂方法传递方法参数

下面代码给出一个例子,首先声明拥有工厂方法的bean-simpledataformat,接着创建新的对象factory-bean指定为上面的simpledateformat,并设置factory-method为parse方法,并在constructor-arg中传递参数,

 <bean id="simpledataformat" class="java.text.SimpleDateFormat">
    	<constructor-arg value="yyyy-MM-dd hh-mm-ss"></constructor-arg>
</bean>
<bean id="date" factory-bean="simpledataformat" factory-method="parse">
    	<constructor-arg value="2018-05-28 20-47-00"></constructor-arg>
</bean>

输出结果为:

五月 28, 2018 8:51:16 下午 org.springframework.context.support.ClassPathXmlApplicationContext prepareRefresh
信息: Refreshing org[email protected]4d405ef7: startup date [Mon May 28 20:51:16 CST 2018]; root of context hierarchy
五月 28, 2018 8:51:16 下午 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
信息: Loading XML bean definitions from class path resource [applicationContext.xml]
Mon May 28 20:47:00 CST 2018