2
votes
Hibernate - maxElementsOnDisk from EHCache to TreeCache
This page seems to imply that the correct configuration element is:
<attribute name="MaxCapacity">20000</attr …
1
vote
Setting FetchMode in native Hibernate
You could try something like this: (code off the top of my head)
Criteria crit = session.createCriteria(MyClass.class);
crit.add(Restrictions.eq("id", myClassId));
crit.setFetchMode …
