Tagged Questions
0
votes
1answer
114 views
Hibernate 4.1.x EhCache doesn't store anything on disk
I'm using Hibernate 4.1.1.Final with Spring MVC 3.1.x and using both first and second level cache. I configured my domain objects using annotations for cache operations. But cache doesn't store ...
0
votes
2answers
3k views
How do I use Hibernate's second level cache with JPA?
I am implementing an Entity Attribute Value based persistence mechanism. All DB access is done via Hibernate.
I have a table that contains paths for nodes, it is extremely simple, just an id, and a ...
0
votes
2answers
381 views
Hibernate HQL createQuery
I'm trying to convert an old application executing SQL queries the old way as below:
java.sql.Connection connection = ....
String queryStr="select acct from Person where acct in (select acct from ...