【spring】p命名空间的使用

mac2024-12-27  13

1、在xml文件中添加配置

xmlns:p="http://www.springframework.org/schema/p"

2、在xml中进行更改

更改前(使用属性依赖注入):

代码实现:

<bean id="UserService" class="springboottest.ioc.UserService"> <property name="usDao" ref="userDao"></property> <property name="userName"><value><![CDATA[唐浩然<TEST>]]></value></property> <property name="age" value="20"></property> </bean>

 

更改后(使用p命名空间)

代码实现:

<bean id="UserService" class="springboottest.ioc.UserService" p:usDao-ref="userDao" p:userName="唐浩然" p:age="20"> </bean>

注 :

(1)如果需要注入一个对象则需要添加引用,即在属性后添加一个-ref

最新回复(0)