本文整理了Java中org.hibernate.Query.getCacheMode
方法的一些代码示例,展示了Query.getCacheMode
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.getCacheMode
方法的具体详情如下:
包路径:org.hibernate.Query
类名称:Query
方法名:getCacheMode
[英]Obtain the CacheMode in effect for this query. By default, the query inherits the CacheMode of the Session from which is originates. NOTE: The CacheMode here only effects reading/writing of the query cache, not the entity/collection caches.
[中]获取此查询有效的CacheMode。默认情况下,查询将继承发起会话的CacheMode。注意:这里的缓存模式只影响查询缓存的读/写,而不影响实体/集合缓存。
代码示例来源:origin: com.github.cafdataprocessing/corepolicy-hibernate
@Override
public CacheMode getCacheMode() {
return query.getCacheMode();
}
代码示例来源:origin: riotfamily/riot
@Override
public CacheMode getCacheMode() {
return query.getCacheMode();
}
内容来源于网络,如有侵权,请联系作者删除!