package com.steff.test.dao;
import java.util.List;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.hibernate.LockMode;
import org.springframework.context.ApplicationContext;
import org.springframework.orm.hibernate3.support.HibernateDaoSupport;
import com.steff.test.entity.LoginTable;
/**
* Data access object (DAO) for domain model class LoginTable.
*
* @see com.steff.test.entity.LoginTable
* @author MyEclipse Persistence Tools
*/
public class LoginTableDAO extends HibernateDaoSupport {
private static final Log log = LogFactory.getLog(LoginTableDAO.class);
// property constants
public static final String UNAME = "uname";
public static final String UPASS = "upass";
public static final String REMARK = "remark";
protected void initDao() {
// do nothing
}
public void save(LoginTable transientInstance) {
log.debug("saving LoginTable instance");
try {
getHibernateTemplate().save(transientInstance);
log.debug("save successful");
} catch (RuntimeException re) {
log.error("save failed", re);
throw re;
}
}
public void delete(LoginTable persistentInstance) {
log.debug("deleting LoginTable instance");
try {
getHibernateTemplate().delete(persistentInstance);
log.debug("delete successful");
} catch (RuntimeException re) {
log.error("delete failed", re);
throw re;
}
}
public LoginTable findById(java.lang.Integer id) {
log.debug("getting LoginTable instance with id: " + id);
try {
LoginTable instance = (LoginTable) getHibernateTemplate().get(
"com.steff.test.entity.LoginTable", id);
return instance;
} catch (RuntimeException re) {
log.error("get failed", re);
throw re;
}
}
public List findByExample(LoginTable instance) {
log.debug("finding LoginTable instance by example");
try {
List results = getHibernateTemplate().findByExample(instance);
log.debug("find by example successful, result size: "
+ results.size());
return results;
} catch (RuntimeException re) {
log.error("find by example failed", re);
throw re;
}
}
public List findByProperty(String propertyName, Object value) {
log.debug("finding LoginTable instance with property: " + propertyName
+ ", value: " + value);
try {
String queryString = "from LoginTable as model where model."
+ propertyName + "= ?";
return getHibernateTemplate().find(queryString, value);
} catch (RuntimeException re) {
log.error("find by property name failed", re);
throw re;
}
}
public List findByUname(Object uname) {
return findByProperty(UNAME, uname);
}
public List findByUpass(Object upass) {
return findByProperty(UPASS, upass);
}
public List findByRemark(Object remark) {
return findByProperty(REMARK, remark);
}
public List findAll() {
log.debug("finding all LoginTable instances");
try {
String queryString = "from LoginTable";
return getHibernateTemplate().find(queryString);
} catch (RuntimeException re) {
log.error("find all failed", re);
throw re;
}
}
public LoginTable merge(LoginTable detachedInstance) {
log.debug("merging LoginTable instance");
try {
LoginTable result = (LoginTable) getHibernateTemplate().merge(
detachedInstance);
log.debug("merge successful");
return result;
} catch (RuntimeException re) {
log.error("merge failed", re);
throw re;
}
}
public void attachDirty(LoginTable instance) {
log.debug("attaching dirty LoginTable instance");
try {
getHibernateTemplate().saveOrUpdate(instance);
log.debug("attach successful");
} catch (RuntimeException re) {
log.error("attach failed", re);
throw re;
}
}
public void attachClean(LoginTable instance) {
log.debug("attaching clean LoginTable instance");
try {
getHibernateTemplate().lock(instance, LockMode.NONE);
log.debug("attach successful");
} catch (RuntimeException re) {
log.error("attach failed", re);
throw re;
}
}
public static LoginTableDAO getFromApplicationContext(ApplicationContext ctx) {
return (LoginTableDAO) ctx.getBean("LoginTableDAO");
}
}
评论0