I had the same problem and I solved it by extending HibernateConfigProcessor:
public class DisableHibernateConfigProcessor extends HibernateConfigProcessor
{
@Override
public void...
Type: Posts; User: pappnas; Keyword(s):
I had the same problem and I solved it by extending HibernateConfigProcessor:
public class DisableHibernateConfigProcessor extends HibernateConfigProcessor
{
@Override
public void...
I copied the code of LocalSessionFactoryBean, added an entityIntercepter Setter and set the interceptor in the afterPropertiesSet() method. Why not re-add the entityIntercepter Property in the...
Ah, sorry, I mean EntityInterceptor, not EntityManager, I just corrected the post
In the hibernate3 package both classes had the entityInterceptor Property and I need to migrate to hibernate4.
Hi,
I just migrated from Hibernate 3 => Hibernate 4.
So I have to replace the org.springframework.orm.hibernate3.* classes in my Spring XML Config with the hibernate4 ones.
But neither ...