spring中bean标签factory-method和factory-bean)详解工厂方法(factory-method和factory-bean)
转自:http://blog.sina.com.cn/s/blog_6d3c1ec601019f3j.html
A、factory-method
The name of a factory method to use to create this object.
工厂方法名称用于创建这个对象。
Use constructor-arg elements to specify arguments to the factory method, if it takes arguments.
若这个工厂方法需要参数的话,使用constructor-arg 元素来指定它的参数。
Autowiring does not apply to factory methods.
自动绑定不能用于工厂方法。
If the "class" attribute is present, the factory method will be a static method on the class specified by the "class" attribute on this bean definition.
若class属性存在,那么这个工厂方法将是这个类内部的一个指向这个类的静态方法。
Often this will be the same class as that of the constructed object - for example, when the factory method is used as an alternative to a constructor.
通常它和构造对象是相同的类,例如,它可代替构造函数。
However, it may be on a different class. In that case, the created object will *not* be of the class specified in the "class" attribute.
它也可以是不同的类。在这种情况下,被创建的对象将不是class属性所指定的类了。
This is analogous to FactoryBean behavior. If the "factory-bean" attribute is present, the "class" attribute is not used, and the factory method will be an instance method on the object returned from a getBean call with the specified bean name.
这和FactoryBean行为相似。若factory-bean属性存在,那么class属性将不会被使用,这个工厂方法将会是通过指定bean名称调用getBean返回对象的一个实例方法。
The factory bean may be defined as a singleton or a prototype. The factory method can have any number of arguments. Autowiring is not supported. Use indexed constructor-arg elements in conjunction with the factory-method attribute. Setter Injection can be used in conjunction with a factory method. Method Injection cannot, as the factory method returns an instance, which will be used when the container creates the bean.
这个工厂bean可以定义为singleton或prototype。这个工厂方法有任何数量参数。不支持自动绑定。使用索引constructor-arg属性结合factory-method属性。Setter注入可以和工厂方法结合使用。方法注入不可以使用,作为工厂方法返回的实例,它将使用容器创建的bean。
举例说明
范例1
1. ExampleBean4类
public class ExampleBean4 {
private String abc="123";
public String getAbc() {
return abc;
}
public void setAbc(String abc) {
this.abc = abc;
}
public static ExampleBean4 createInstance(){
ExampleBean4 exampleBean4=new ExampleBean4();
exampleBean4.setAbc("456");
return exampleBean4;
}
}
2.配置文件
<beans>
<bean id="bean1" class="IoC.ExampleBean4" />
<bean id="bean2" class="IoC.ExampleBean4" factory-method="createInstance"/>
</beans>
3.测试类
public class Test {
public static void main(String[] args) {
String fileName = "bean5.xml";
AbstractApplicationContext ctx = new ClassPathXmlApplicationContext(
new String[] { fileName });
ExampleBean4 bean1=(ExampleBean4)ctx.getBean("bean1");
System.out.println(bean1.getAbc());
ExampleBean4 bean2=(ExampleBean4)ctx.getBean("bean2");
System.out.println(bean2.getAbc());
}
}
4.运行结果
123
456
Bean1是使用构造函数创建的,故它返回123.bean2是使用工厂方法创建的,故返回456.
范例2
若我们把ExampleBean4改为如下,工厂方法的返回值和它本身的类不一样,这时在调用getBean()将返回String对象,而不是ExampleBean4
public class ExampleBean4 {
private String abc="123";
public String getAbc() {
return abc;
}
public void setAbc(String abc) {
this.abc = abc;
}
public static String createInstance(){
return "789";
}
}
B、factory-bean
Alternative to class attribute for factory-method usage.
在使用factory-method时,替代class属性。
If this is specified, no class attribute should be used. This must be set to the name of a bean in the current or ancestor factories that contains the relevant factory method. This allows the factory itself to be configured using Dependency Injection, and an instance (rather than static) method to be used.
若指定了这个属性,class属性将不会被使用。它必须设定为当前或父工厂中的bean名称,它包含相关的工厂方法。这使得工厂本身需要配置依赖注入,并使用一个实例方法(不是静态的)。
举例说明
我们根据上面的例子,修改为使用factory-bean来创建bean。这时候createInstance工厂方法不再必须是静态的。
范例5
1. ExampleBean5类
public class ExampleBean5 {
private String abc="123";
public String getAbc() {
return abc;
}
public void setAbc(String abc) {
this.abc = abc;
}
public ExampleBean5 createInstance(){
ExampleBean5 exampleBean5=new ExampleBean5();
exampleBean5.setAbc("456");
return exampleBean5;
}
}
2.配置文件
<beans>
<bean id="bean1" class="IoC.ExampleBean5" />
<bean id="bean2" factory-method="createInstance" factory-bean="bean1"/>
</beans>
3.测试类
不变
4.运行结果
不变
spring中bean标签factory-method和factory-bean)详解工厂方法(factory-method和factory-bean)的更多相关文章
- Spring中的注入方式 和使用的注解 详解
注解:http://www.cnblogs.com/liangxiaofeng/p/6390868.html 注入方式:http://www.cnblogs.com/java-class/p/4727 ...
- Angular中innerHTML标签的样式不起作用详解
1.背景 在最近angular的项目中,需要用到[innerHTML]标签来指定一个div的样式: //HTML部分 <div class="contents" [inner ...
- 简单工厂,Factory Method(工厂方法)和Abstract Factory(抽象工厂)模式
对于简单工厂来说,它的工厂只能是这个样子的 public class SimplyFactory { /** * 静态工厂方法 */ public static Prouct factory(Str ...
- Spring事务Transaction配置的五种注入方式详解
Spring事务Transaction配置的五种注入方式详解 前段时间对Spring的事务配置做了比较深入的研究,在此之间对Spring的事务配置虽说也配置过,但是一直没有一个清楚的认识.通过这次的学 ...
- 转载~kxcfzyk:Linux C语言多线程库Pthread中条件变量的的正确用法逐步详解
Linux C语言多线程库Pthread中条件变量的的正确用法逐步详解 多线程c语言linuxsemaphore条件变量 (本文的读者定位是了解Pthread常用多线程API和Pthread互斥锁 ...
- Android中Intent传值与Bundle传值的区别详解
Android中Intent传值与Bundle传值的区别详解 举个例子我现在要从A界面跳转到B界面或者C界面 这样的话 我就需要写2个Intent如果你还要涉及的传值的话 你的Intent就要写两 ...
- ORACLE中RECORD、VARRAY、TABLE的使用详解(转)
原文地址:ORACLE中RECORD.VARRAY.TABLE的使用详解
- Java集合中List,Set以及Map等集合体系详解
转载请注明出处:Java集合中List,Set以及Map等集合体系详解(史上最全) 概述: List , Set, Map都是接口,前两个继承至collection接口,Map为独立接口 Set下有H ...
- 对python3中pathlib库的Path类的使用详解
原文连接 https://www.jb51.net/article/148789.htm 1.调用库 ? 1 from pathlib import 2.创建Path对象 ? 1 2 3 4 5 ...
随机推荐
- php5.5安装笔记
这次没想到本来很简单的php编译,没想到遇到那么多问题.再此记录一下. 1.php5.5编译安装主要有一个难点,就是GD库的问题,因为php5.5的GD库必须是2.1以上的版本哦 原来都是用的gd2. ...
- ES TransportClient demo
import java.net.InetAddress; import java.net.UnknownHostException; import org.elasticsearch.action.b ...
- 随机森林算法demo python spark
关键参数 最重要的,常常需要调试以提高算法效果的有两个参数:numTrees,maxDepth. numTrees(决策树的个数):增加决策树的个数会降低预测结果的方差,这样在测试时会有更高的accu ...
- 如何使用github来展示自己的网页
项目文档或者单纯的html页面怎么用github来展示呢? 第一步:新建库 第二步: 上传自己的页面(index.html需在根目录下) 先把git库克隆下来 进入lineShop文件夹,拷贝自己的页 ...
- 关于jquery文件上传插件 uploadify 3.1的使用
要使用uplaodify3.1,自然要下载相应的包,下载地址http://www.uploadify.com/download/,这里有两种包,一个是基于flash,免费的,一个是基于html5,需要 ...
- git工具的安装和使用
啰嗦几句: 世界上本没有后悔药,但软件开发提供了后悔药,那就是代码管理工具.它可以让你的代码穿越回以前的状态,甚至可以指定某一个时刻,而且还可以穿越回来. 当下流行的代码管理工具有 SVN 和 GIT ...
- 不得了,微软原生提供 AI 人工智能 API,而且面向网页开放
微软原生人工智能(AI) API 不得了,微软原生提供 AI 人工智能 API,而且面向网页开放
- jq——属性和方法
ps:所有元素要加上“” 属性: 1) attr:属性,元素.attr(); 获取属性 $("input").click(function(){ console.log($( ...
- echart纵坐标标签特别长换行显示
纵坐标 yAxis : [ { type : 'category', data : name, axisLabel: { //坐标轴刻度标签的相关设置. textStyle: { color: '#0 ...
- [NOIP补坑计划]NOIP2016 题解&做题心得
感觉16年好难啊QAQ,两天的T2T3是不是都放反了啊…… 场上预计得分:100+80+100+100+65+100=545(省一分数线280) ps:loj没有部分分,部分分见洛咕 题解: D1T1 ...