标签:hibernate hbm dynamic-update hibernate-mapping update
此属性位于hbm文件class标签-->
<hibernate-mapping> <class name="com.example.A" table="A" dynamic-update="true">
添加后可以动态生成更新数据的sql语句,所谓动态,就是如果我们A表有5个字段分别是abcde,我们只对bc进行了修改,那么hibernate生成的update语句就会为
update A set b=x,c=y where a =xx;而不是
<pre name="code" class="sql">update A set b=x,c=y,d=z,e=xy where a=xx;
通过此属性,我们可以实现对数据库的某些字段的更新.
但,这个属性有一个大大的坑,就是如果我们进行了这样的操作-->
A a = (A)getHibernateTemplate().get(A.class, id);//id可能是其他的类型,需要传入对应的
String newb = "newb";
String newc = null;
a.setB(newb);
a.setC(newc);
我们认为hibernate会因为c=null而忽略对C的更新,那么恭喜你,掉坑里了.实际上hibernate生成的sql-->
update A set b=newb,c=null where a=xx;好了,这个坑就是这样,各位警戒吧.
关于hibernate-dynamic-update的注意事项
标签:hibernate hbm dynamic-update hibernate-mapping update
原文地址:http://blog.csdn.net/java1234321/article/details/46300905