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

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

id="generalDao" class="generalDao" >

a.xml文件

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

id="bookserviceclassA" class="webserviceImplA" scope="prototype" autowire="byName"> name="generalDao"> local="generalDao" />

其中generalDao定义在a.xml中


我自己的解决办法

applicationContext.xml文件

在applicationContext-security.xml文件中引用 applicationContext.xml文件中的pubUserDao

		
			
			

本人亲测,好用






你可能感兴趣的:(spring学习)