我的休眠hbm xml具有如下属性映射
<set name="batchExceptionComments" table="BATCH_EXCEPTION_COMMENTS"
inverse="true" fetch="select" lazy="false" order-by="commentId">
<key>
<column name="EXCEPTION_ID" not-null="true" />
</key>
<one-to-many class="com.beans.BatchExceptionComments" />
</set>
我正在使用order-by =“ commentId”,该ID按ID升序排列集合。
我希望我的布景按降序排列。我应该做些什么改变。
附言我不想更改我的Java代码。
使用的框架:Spring
使用的ORM:杂交
最佳答案
我有解决方案,用这个
order-by="commentId desc"