Hibernate更新某些字段的几种方法.doc_第1页
Hibernate更新某些字段的几种方法.doc_第2页
Hibernate更新某些字段的几种方法.doc_第3页
Hibernate更新某些字段的几种方法.doc_第4页
免费预览已结束,剩余1页可下载查看

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

Hibernate更新某些字段的几种update方法(2011-02-18 11:33:48) 转载标签: 字段更改语句属性方法it分类: 我的职业-hibernate Hibernate 中如果直接使用Session.update(Object o);会把这个表中的所有字段更新一遍。比如:view plaincopy to clipboardprint?public class TeacherTest Test public void update() Session session = HibernateUitl.getSessionFactory().getCurrentSession(); session.beginTransaction(); Teacher t = (Teacher) session.get(Teacher.class, 3); t.setName(yangtb2); session.update(t); session.getTransaction().commit(); public class TeacherTest Testpublic void update() Session session = HibernateUitl.getSessionFactory().getCurrentSession(); session.beginTransaction(); Teacher t = (Teacher) session.get(Teacher.class, 3); t.setName(yangtb2); session.update(t); session.getTransaction().commit();Hibernate 执行的SQL语句:view plaincopy to clipboardprint?Hibernate: update Teacher set age=?, birthday=?, name=?, title=? where id=?Hibernate: update Teacher set age=?, birthday=?, name=?, title=? where id=?我们只更改了Name属性,而Hibernate 的sql语句 把所有字段都更改了一次。这样要是我们有字段是文本类型,这个类型存储的内容是几千,几万字,这样效率会很低。那么怎么只更改我们更新的字段呢?有三中方法:1.XML中设置property 标签 update = false ,如下:我们设置 age 这个属性在更改中不做更改view plaincopy to clipboardprint?在Annotation中 在属性GET方法上加上Column(updatable=false)view plaincopy to clipboardprint?Column(updatable=false) public int getAge() return age; Column(updatable=false)public int getAge() return age;我们在执行 Update方法会发现,age 属性 不会被更改view plaincopy to clipboardprint?Hibernate: update Teacher set birthday=?, name=?, title=? where id=?Hibernate: update Teacher set birthday=?, name=?, title=? where id=?缺点:不灵活2.第2种方法使用XML中的 dynamic-update=trueview plaincopy to clipboardprint?OK,这样就不需要在字段上设置了。但这样的方法在Annotation中没有3.第三种方式:使用HQL语句(灵活,方便)使用HQL语句修改数据view plaincopy to clipboardprint?public void update() Session session = HibernateUitl.getSessionFactory().getCurrentSession(); session.beginTransaction(); Query query = session.createQuery(update Teacher t set = yangtianb where id = 3); query.executeUpdate(); session.getTransaction().commit(); public void update() Session session = HibernateUitl.getSessionFactory().getCurrentSession(); session.beginTransaction(); Query query = session.createQuery(update Teacher t set = yangtianb where id = 3); query.executeUpdate(); session.getTransaction().commit();Hibernate 执行的SQL语句:view plaincopy to clipboardprint?Hibe

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论