⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cachekey.java

📁 介绍了hibernate的入门有一些基本常用的事例
💻 JAVA
字号:
//$Id: CacheKey.java,v 1.4 2005/02/16 12:50:10 oneovthafew Exp $package org.hibernate.cache;import java.io.Serializable;import org.hibernate.EntityMode;import org.hibernate.type.Type;/** * Allows multiple entity classes / collection roles to be  * stored in the same cache region. Also allows for composite  * keys which do not properly implement equals()/hashCode(). *  * @author Gavin King */public class CacheKey implements Serializable {	private final Serializable key;	private final Type type;	private final String entityOrRoleName;	private EntityMode entityMode;		/**	 * Construct a new key for a collection or entity instance.	 * Note that an entity name should always be the root entity 	 * name, not a subclass entity name.	 */	public CacheKey(Serializable id, Type type, String entityOrRoleName, EntityMode entityMode) {		this.key = id;		this.type = type;		this.entityOrRoleName = entityOrRoleName;		this.entityMode = entityMode;	}	//Mainly for OSCache	public String toString() {		return entityOrRoleName + '#' + key.toString();//"CacheKey#" + type.toString(key, sf);	}	public boolean equals(Object other) {		if ( !(other instanceof CacheKey) ) return false;		CacheKey that = (CacheKey) other;		return type.isEqual(key, that.key, entityMode) && 			entityOrRoleName.equals(that.entityOrRoleName);	}	public int hashCode() {		return type.getHashCode(key, entityMode);	}		public Serializable getKey() {		return key;	}		public String getEntityOrRoleName() {		return entityOrRoleName;	}}

⌨️ 快捷键说明

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