spring引用不同的xml配置文件中的bean

问题描述:如果spring的bean分布在不同的xml文件中,
别人的解决办法(我试了,貌似不好用)
可应采用如下的引用方式:如A.xml中定义了如下的bean

<bean id="generalDao" class="generalDao" ></bean>

a.xml文件

文件B.xml应用A.xml的bean

<bean id="bookserviceclassA" class="webserviceImplA" scope="prototype" autowire="byName"> <property name="generalDao"> <ref local="generalDao" /> </property> </bean>

其中generalDao定义在a.xml中


我自己的解决办法

applicationContext.xml文件
<bean id="pubUsersDao"class="com.laj.security.dao.PubUsersDAO"><property name="sessionFactory"><ref bean="sessionFactory" /></property></bean>

在applicationContext-security.xml文件中引用 applicationContext.xml文件中的pubUserDao
<beans:bean id="userDetailsService" class="com.laj.security.service.MyUserDetailsService" >
		<beans:property name="pubUsersDao">
			<beans:ref bean="pubUsersDao"/>
		</beans:property>	
</beans:bean>

本人亲测,好用






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值