Hibernate 4 support in IntelliJ IDEA 11
I migrated a Spring / Hibernate project from Hibernate 3.6.8.Final to 4.0.1.Final, and also updated the related spring bean definitions (packages have now hibernate4 in their names). As an example
<bean id="sessionFactory" >
became
<bean id="sessionFactory" >
the problem is that the hibernate facet no longer detecs any hibernate configuration files, thus, I have no Hibernate specific features such as auto completion in my HQL queries (at least in in-line queries).
Am I missing something or is Hibernate 4 not yet supported?
Please sign in to leave a comment.
We've added Hibernate 4 support and spring-persistence-hibernate4 integration in the next eap build (11.1 eap).
perfect, thanks for sharing this information.