5
votes
How I can disable the second-level cache of some certain entities in Hibernate without changing annotations
You can configure the implementation provider of second level cache to short TTL times and/or to store 0 entries of particular entity type.
E.g. if you are using the Ehcache, you can confi …
5
votes
Proper way of writing a HQL in ( … ) query
I am unsure how to do this with positional parameter, but if you can use named parameters instead of positional, then named parameter can be placed inside brackets and …
0
votes
Expressions in hibernate criteria
It is (probably) not possible to do it with Criteria. But HQL can be helpful for this.
…
