org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'transactionManager
- by BilalFromParis
when I add the code into my spring configuration file beans-hibernate.xml
<bean id="transactionManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
It doesn't work and I don't know why, can someone help me please ?
My Dao Class…