温馨提示×

温馨提示×

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

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

spring如何使用命名空间p简化bean的配置

发布时间:2021-03-05 15:10:59 来源:亿速云 阅读:146 作者:小新 栏目:编程语言

小编给大家分享一下spring如何使用命名空间p简化bean的配置,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!

这篇文章主要介绍了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的配置”有了一定的了解,如果想了解更多相关知识,欢迎关注亿速云行业资讯频道,感谢各位的阅读!

向AI问一下细节

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

AI