zoukankan      html  css  js  c++  java
  • spring之使用命名空间p来简化bean的配置

    一般情况下,我们是这么配置bean的:

        <bean id="car1" class="com.gong.spring.beans.Car">
            <property name="name" value="baoma"></property>
        </bean>
        <bean id="car2" class="com.gong.spring.beans.Car">
            <property name="name" value="benchi"></property>
        </bean>
        <bean id="car3" class="com.gong.spring.beans.Car">
            <property name="name" value="binli"></property>
        </bean>
        
        <bean id="student" class="com.gong.spring.beans.Student">
            <property name="name" value="tom"></property>
            <property name="age" value="12"></property>
            <property name="score" value="98.00"></property>
            <property name="cars" ref="cars">
            </property>
            
        </bean>
        
        <util:list id="cars">
            <ref bean="car1"/>
            <ref bean="car2"/>
            <ref bean="car3"/>
        </util:list>

    说明:cars是公用的集合Bean,Student里有name、age、score以及类型为List<Car>的car属性。

    在引入了命名空间之后,我们就可以这么进行配置了:

        <bean id="car1" class="com.gong.spring.beans.Car" p:name="baoma"></bean>
        <bean id="car2" class="com.gong.spring.beans.Car" p:name="benchi"></bean>
        <bean id="car3" class="com.gong.spring.beans.Car" p:name="binli"></bean>
        
        <bean id="student" class="com.gong.spring.beans.Student"
        p:name="tom" p:age="12" p:score="98.00" p:cars-ref="cars"></bean>
        
        <util:list id="cars">
            <ref bean="car1"/>
            <ref bean="car2"/>
            <ref bean="car3"/>
        </util:list>

    相较于原来的,代码简洁了很多。

  • 相关阅读:
    flask上下管理文相关
    flask上下管理文相关
    flask上下文管理相关-LocalStack 对象维护栈
    flask上下文管理相关
    flask-wtforms组件
    flask数据库连接池DBUtils
    flask蓝图blueprint是什么
    flask不得不知的基础
    产品的四个主要的要素
    C# 函数式编程:LINQ
  • 原文地址:https://www.cnblogs.com/xiximayou/p/12150383.html
Copyright © 2011-2022 走看看