在Spring中配置Bean
2007-12-23 12:33:59 来源:WEB开发网SPRing的逻辑层不是EJB等重量级组件,而是java Bean,因此正确配置Bean在Spring中就很重要。Spring中Bean的配置一共有以下方式:
第一类:通过Bean的ConstrUCtor创建Bean:
创建一个名为exampleBean,类型为examples.ExampleBean的Bean:
<bean id="exampleBean" class="examples.ExampleBean" />
相当于:
exampleBean = new examples.ExampleBean();
缺省的,创建的Bean都是Singleton,如果要每次创建新的Bean,设置:
<bean id="..." class="..." singleton="false" />
对于Singleton的Bean,Spring会跟踪它,下次请求这个Bean时会直接返回Singleton实例。对于non-singleton的Bean,Spring不会跟踪它,每次请求都会创建新的实例。
第二类:通过Factory创建Bean:
如果要通过static factory创建Bean,指定Factory Class和static factory method即可:
<bean id="exampleBean"
class="examples.ExampleBean2"
factory-method="create" />
相当于:
exampleBean = examples.ExampleBean2.create();
如果不是通过static factory而是工厂实例来创建,指定工厂实例和factory method即可,其中引用的factory-bean应该用<bean id="myFactoryBean" ... />配置好了:
<bean id="exampleBean"
factory-bean="myFactoryBean"
factory-method="create" />
相当于:
myFactoryBean = ...
exampleBean = myFactoryBean.create();
初始化Bean:
当创建了一个Bean后,立即可以初始化Bean,有两种方式:通过一系列的setProperty(value)和指定Constructor或工厂方法的参数。Spring同时支持这两种方式,但是设计者建议,除非是历史遗留的Bean,推荐使用setProerty的方式初始化Bean。
假定Bean有一个setAge(int age)方法,可以这样初始化Bean:
<bean id="exampleBean" ...>
<property name="age"><value>20</value></property>
</bean>
这是int,float等基本类型和String,Date的初始化方式,如果是一个对象引用,比如setStudent(Student std):
<bean id="exampleBean" ...>
<property name="student"><ref bean="studentBeanId" /></property>
</bean>
特别注意null引用不能用<value></value>,这会被识别为空字符串"",应该用<null/>:
<bean id="exampleBean" ...>
<property name="student"><null/></property>
</bean>
注:我也是看Spring的官方文档边看边写出来的,如有错误,还请大家指正!
(出处:http://www.cncms.com)
- ››配置MySQL出错The service could not be started....
- ››配置apache虚拟主机
- ››Spring源码学习-含有通配符路径解析(上)
- ››配置远程客户机使用命名管道协议访问SQL服务器
- ››配置SQL Server2005以允许远程访问
- ››配置ISA Server以创建站点到站点VPN 连接之一
- ››配置ISA Server以创建站点到站点VPN 连接之二
- ››配置ISA Server以创建站点到站点VPN 连接之三 启用...
- ››配置VPN服务器中的L2TP/IPSEC:ISA2006系列之二十...
- ››配置单网卡的ISA缓存服务器:ISA2006系列之二十七...
- ››配置Win2008作为远程访问SSL-VPN服务器之一
- ››配置Win2008作为远程访问SSL-VPN服务器之二
更多精彩
赞助商链接