首页 > 学院 > 开发设计 > 正文

在Spring中配置Bean

2019-11-18 16:08:22
字体:
来源:转载
供稿:网友

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.VeVb.com)



发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表