码迷,mamicode.com
首页 > Web开发 > 详细

HibernateDaoSupport中的操作数据的方法

时间:2016-06-29 21:59:24      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

1、建立一个类

2、继承HibernateDaoSupport

public class bookDAO extends HibernateDaoSupport{


/*

插入操作

*/

public void save(Book book) {
this.getHibernateTemplate().save(book);
}

/*

更新操作

*/


public void update(Book book){
this.getHibernateTemplate().update(book);
}

/*

删除操作

*/


public void delete(Book book){
this.getHibernateTemplate().delete(book);
}

/*

根据id查询

*/


public Book findById(Integer id){
return this.getHibernateTemplate().get(Book.class, id);
}

/*

查询所有

*/


public List<Book> findAll(){
return this.getHibernateTemplate().find("from Book");
}

/*

根据name查询

*/


public List<Book> findByName(String name){
return this.getHibernateTemplate().findByNamedQuery("findByName", name);
}


}

HibernateDaoSupport中的操作数据的方法

标签:

原文地址:http://www.cnblogs.com/longlinxie/p/5628206.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!