spring怎样使用命名空间p简化bean的配置

发布时间:2021-02-02 10:01:26 作者:小新
来源:亿速云 阅读:125

这篇文章主要介绍了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>

感谢你能够认真阅读完这篇文章,希望小编分享的“spring怎样使用命名空间p简化bean的配置”这篇文章对大家有帮助,同时也希望大家多多支持亿速云,关注亿速云行业资讯频道,更多相关知识等着你来学习!

推荐阅读:
  1. Spring装配Bean---使用xml配置
  2. Spring实战之使用util:命名空间简化配置操作示例

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

spring

上一篇:JS怎么实现网站中PC端和手机端自动识别并跳转对应的代码

下一篇:Python Des加密解密怎样实现软件注册码机器码

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》