standardquerycachefactory.java

来自「hibernate-3.0.5 中文文档」· Java 代码 · 共 25 行

JAVA
25
字号
// $Id: StandardQueryCacheFactory.java,v 1.2 2004/10/26 09:35:36 oneovthafew Exp $package org.hibernate.cache;import org.hibernate.HibernateException;import org.hibernate.cfg.Settings;import java.util.Properties;/** * Standard Hibernate implementation of the QueryCacheFactory interface.  Returns * instances of {@link StandardQueryCache}. */public class StandardQueryCacheFactory implements QueryCacheFactory {	public QueryCache getQueryCache(	        final String regionName,	        final UpdateTimestampsCache updateTimestampsCache,	        final Settings settings,	        final Properties props) 	throws HibernateException {		return new StandardQueryCache(settings, props, updateTimestampsCache, regionName);	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?