阅读253 返回首页    go 技术社区[云栖]


Hibernate之update(1)——更新部分字段

 

Hibernate 中如果直接使用Session.update(Object o),会把这个表中的所有字段更新一遍。

如果你没有对你需要更新的字段以外的字段赋值,那么这些字段会被置空。


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();
}
}

Hibernate 执行的SQL语句:

Hibernate: 
update 
Teacher 
set 
age=?, 
birthday=?, 
name=?, 
title=? 
where 
id=?


我们只更改了Name属性,而Hibernate 的sql语句 把所有字段都更改了一次。

这样要是我们有字段是文本类型,这个类型存储的内容是几千,几万字,这样效率会很低。

 

那么怎么只更改我们更新的字段呢?有三中方法:

 

1.XML中设置property 标签 update = "false" ,如下:我们设置 age 这个属性在更改中不做更改

<property name="age" update="false"></property>
<property name="age" update="false"></property>

在Annotation中 在属性GET方法上加上@Column(updatable=false)

@Column(updatable=false) 
public int getAge() { 
return age; 
}

我们在执行 Update方法会发现,age 属性 不会被更改

Hibernate: 
update 
Teacher 
set 
birthday=?, 
name=?, 
title=? 
where 
id=?
缺点:不灵活

 

2.使用XML中的 dynamic-update="true"

<class name="com.sccin.entity.Student" table="student" dynamic-update="true">
<class name="com.sccin.entity.Student" table="student" dynamic-update="true">

OK,这样就不需要在字段上设置了。

但这样的方法在Annotation中没有

 

 

3.第三种方式:使用HQL语句(灵活,方便)

使用HQL语句修改数据

public void update()


Session session = HibernateUitl.getSessionFactory().getCurrentSession(); 
session.beginTransaction(); 
Query query = session.createQuery("update Teacher t set t.name = 'yangtianb',t.age = '20' where id = 3"); 
query.executeUpdate(); 
session.getTransaction().commit(); 
}

注意:更新每个字段之间的逗号不可少,否则报错。


Hibernate 执行的SQL语句:

Hibernate: 
update 
Teacher 
set 
name='yangtianb', 
age='20' 
where 
id=3

这样就只更新了我们更新的字段 

自己整理的一些方法:

1、使用hidden标签,把不需要的字段也查出来,然后在返回去。

2、再查一边数据库,声明一个新的对象,再把页面传过来的数据set进去,保存这个新声明的对象

 

原帖地址:https://www.cnblogs.com/hyteddy/archive/2011/07/21/2113175.html

最后更新:2017-04-03 16:49:27

  上一篇:go J2EE中EL和JSTL结合运用
  下一篇:go ibatis中传递多个参数