persondao.java

来自「一个简单的使用 hibernate框架的程序」· Java 代码 · 共 51 行

JAVA
51
字号
package lizhx.test.dao.iface;

import java.io.Serializable;

public interface PersonDAO {
	public lizhx.test.Person get(java.lang.Integer key);

	public lizhx.test.Person load(java.lang.Integer key);

	public java.util.List<lizhx.test.Person> findAll ();


	/**
	 * Persist the given transient instance, first assigning a generated identifier. (Or using the current value
	 * of the identifier property if the assigned generator is used.) 
	 * @param person a transient instance of a persistent class 
	 * @return the class identifier
	 */
	public java.lang.Integer save(lizhx.test.Person person);

	/**
	 * Either save() or update() the given instance, depending upon the value of its identifier property. By default
	 * the instance is always saved. This behaviour may be adjusted by specifying an unsaved-value attribute of the
	 * identifier property mapping. 
	 * @param person a transient instance containing new or updated state 
	 */
	public void saveOrUpdate(lizhx.test.Person person);

	/**
	 * Update the persistent state associated with the given identifier. An exception is thrown if there is a persistent
	 * instance with the same identifier in the current session.
	 * @param person a transient instance containing updated state
	 */
	public void update(lizhx.test.Person person);

	/**
	 * Remove a persistent instance from the datastore. The argument may be an instance associated with the receiving
	 * Session or a transient instance with an identifier associated with existing persistent state. 
	 * @param id the instance ID to be removed
	 */
	public void delete(java.lang.Integer id);

	/**
	 * Remove a persistent instance from the datastore. The argument may be an instance associated with the receiving
	 * Session or a transient instance with an identifier associated with existing persistent state. 
	 * @param person the instance to be removed
	 */
	public void delete(lizhx.test.Person person);


}

⌨️ 快捷键说明

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