genericdao.java
来自「网上拍卖系统」· Java 代码 · 共 41 行
JAVA
41 行
package auction.dao;import java.util.List;import java.io.Serializable;/** * An interface shared by all business data access objects. * <p> * All CRUD (create, read, update, delete) basic data access operations are * isolated in this interface and shared accross all DAO implementations. * The current design is for a state-management oriented persistence layer * (for example, there is no UDPATE statement function) that provides * automatic transactional dirty checking of business objects in persistent * state. * * @author Christian Bauer */public interface GenericDAO<T, ID extends Serializable> { T findById(ID id, boolean lock); List<T> findAll(); List<T> findByExample(T exampleInstance, String... excludeProperty); T makePersistent(T entity); void makeTransient(T entity); /** * Affects every managed instance in the current persistence context! */ void flush(); /** * Affects every managed instance in the current persistence context! */ void clear();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?