在hibernate 4中使用list-index base

时间:2015-03-11 17:36:14

标签: java hibernate hibernate-4.x

好吧,我试图在XML地图中使用list-index标记,如下所示:

        <list-index column="order" base="0"/>

但有时我需要从1开始。如果我使用base =&#34; 0&#34;从我的Java Bean中的1开始,hibernate强制order = 1,我想避免这种情况。

查找

myBean.setOrder(1);//hibernate change to '0'

如果我将list-index更改为base =&#39; 1&#39;当我需要从&#39; 0&#39;开始hibernate set&#39; 1&#39;。我该如何解决这个问题?

0 个答案:

没有答案