📄 userdao.java
字号:
package org.hibernate.auction.dao;
import net.sf.hibernate.*;
import net.sf.hibernate.expression.Example;
import org.hibernate.auction.exceptions.InfrastructureException;
import org.hibernate.auction.model.User;
import org.hibernate.auction.persistence.HibernateUtil;
import java.util.Collection;
/**
* A typical DAO for users using Hibernate.
*
* @author Christian Bauer <christian@hibernate.org>
*/
public class UserDAO {
public UserDAO() {
HibernateUtil.beginTransaction();
}
// ********************************************************** //
public User getUserById(Long userId, boolean lock)
throws InfrastructureException {
Session session = HibernateUtil.getSession();
User user = null;
try {
if (lock) {
user = (User) session.load(User.class, userId, LockMode.UPGRADE);
} else {
user = (User) session.load(User.class, userId);
}
} catch (HibernateException ex) {
throw new InfrastructureException(ex);
}
return user;
}
// ********************************************************** //
public Collection findAll()
throws InfrastructureException {
Collection users;
try {
users = HibernateUtil.getSession().createCriteria(User.class).list();
} catch (HibernateException ex) {
throw new InfrastructureException(ex);
}
return users;
}
// ********************************************************** //
public Collection findByExample(User exampleUser)
throws InfrastructureException {
Collection users;
try {
Criteria crit = HibernateUtil.getSession().createCriteria(User.class);
users = crit.add(Example.create(exampleUser)).list();
} catch (HibernateException ex) {
throw new InfrastructureException(ex);
}
return users;
}
// ********************************************************** //
public void makePersistent(User user)
throws InfrastructureException {
try {
HibernateUtil.getSession().saveOrUpdate(user);
} catch (HibernateException ex) {
throw new InfrastructureException(ex);
}
}
// ********************************************************** //
public void makeTransient(User user)
throws InfrastructureException {
try {
HibernateUtil.getSession().delete(user);
} catch (HibernateException ex) {
throw new InfrastructureException(ex);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -