加载spring配置文件时,报如下错误:
org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 52 in XML document from class path resource [applicationContext-transcation.xml] is invalid; nested exception is org.xml.sax.SAXParseException: cvc-id.1: There is no ID/IDREF binding for IDREF 'sessionFactory'.
Caused by: org.xml.sax.SAXParseException: cvc-id.1: There is no ID/IDREF binding for IDREF 'sessionFactory'.
看这个意思是找不到bean
原因:我之前是只有一个applicationContext.xml配置文件,后来模块化,被拆分成多个配置文件,而有一个地方:
<!-- 为sessionFactory定义事务管理器 -->
<bean id="transactionManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory">
<ref local="sessionFactory" />
</property>
</bean>
引用类型是<ref local="sessionFactory" /> local 表示只在本文件中找bean
改成<ref bean="sessionFactory" /> 之后,问题解决。
ref bean= 表示在所有applicationContext.xml中找bean。