Anyone know why I can't get these validation errors to disappear? The spring project builder is turned on, and set to build automatically. Here is a snippet of config file. I'm also using Spring 1.2.8.
The validator tells me that the sessionFactory reference in the transactionManager bean is an "Invalid referenced bean". This did not happen before upgrading to 1.3.1.
HTML Code:<bean id="sessionFactory" class="org.springframework.orm.hibernate.LocalSessionFactoryBean"> <property name="dataSource"> <ref local="dataSource" /> </property> ... (other properties) </bean> <bean id="transactionManager" class="org.springframework.orm.hibernate.HibernateTransactionManager"> <property name="sessionFactory"> <ref local="sessionFactory" /> </property> </bean>


Reply With Quote