I am having the same problem even though I just have updated from org.springframework.orm.hibernate3.LocalSessionFac toryBean to org.springframework.orm.hibernate4.LocalSessionFac toryBean.
From:
Code:
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
...
</bean>
To:
Code:
<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
...
</bean>

Originally Posted by
momatej
I'm having hard time finding migration docs. I was using sping 3.0.5 and hibernate 3.4.
....
...