spring 配置文件的相互引用问题

UserDAOSupport.xml<beans...................<importresource="spring_unite_hibernate/Fa... UserDAOSupport.xml
< beans ...................

<import resource="spring_unite_hibernate/FactoryConfigDataSource.xml"/>
<bean id="UserDao" class="spring_unite_hibernate.UserDaoSupport">
<property name="sessionFactory">
<ref bean="sessionFactory"/>
</property>
</bean>

< /beans>

FactoryConfigDataSource.xml

< beans.....................................

<bean id="dataSource"
......................
.....................
</bean>

<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource">
<ref local="dataSource" />
</property>
<property name="mappingResources">
<list>
<value>User.hbm.xml</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="dialect">org.hibernate.dialect.SQLServerDialect</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
</bean>

< /beans>

两个配置文件在同一包spring_unite_hibernate下面,为什么UserDAOSupport.xml的bean中引用
FactoryConfigDataSource.xml中的sessionFactory 一直提示引用的bean‘sessionFactory’找不到

错误提示:
Loading XML bean definitions from URL [file:/G:/STSCode/hibernate_in_spring/build/classes/spring_unite_hibernate/spring_unite_hibernate/FactoryConfigDataSource.xml]
Exception in thread "main" org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Failed to import bean definitions from relative location [spring_unite_hibernate/FactoryConfigDataSource.xml]
Offending resource: class path resource [spring_unite_hibernate/UserDAOSupport.xml]; nested exception is org.springframework.beans。。。。。
展开
 我来答
Mxyue0208
2013-02-28 · TA获得超过417个赞
知道小有建树答主
回答量:348
采纳率:0%
帮助的人:123万
展开全部

在其中一个xml文件中用<import resourse="">引用其他的配置文件!

例如

疏狂山人
2013-02-28 · TA获得超过1940个赞
知道小有建树答主
回答量:395
采纳率:100%
帮助的人:215万
展开全部
在web.xml中配置下
eg.
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext-*.xml,classpath*:applicationContext-*.xml</param-value>
</context-param>
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式