As per my understanding, Second level cache will be used when the objects are loaded using their primary key. This includes fetching of associations.I can think of only above session.get(), session.load methods where second level cache will come in to picture.
If association is collection or some other entity , how it can be cached ? For example :-
@Cacheable
public class Department{
private List Employees;
private DepatmentDetail detail ;
}
How can i make association Employees and detail cacheable ? I think i need to mention @cache above associations Employees and detail. But that didn't work?
when developer does department.getEmployees(), hibernate will internally fire the query i.e
select * from employees where deptId =1;
Now if i use query cache where i explicitly make above query and fetch the results, query will be fired again to db. why query is fired again . I think this is related to how hibernate internally stores the result of second level cache and query cache(they may be stored in separate regions). If somebody can throw light on this aspect also, it will be great.