我的休眠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升序排列集合。
我希望我的布景以降序排列。我应该进行哪些更改。
P.S。我不想更改我的Java代码。
使用的框架:弹簧
使用的ORM:Hiebrnate
答案 0 :(得分:1)
我有解决方法,用这个
order-by="commentId desc"