想通过hibernate hbm xml mapping降序排列

Want Order by in descending order through hibernate hbm xml mapping

我的休眠 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 升序排列集合。

我希望我的集合按降序排列。我应该做哪些改变。

P.S。我不想更改我的 Java 代码。

使用的框架:Spring

ORM Used:Hiebrnate

我得到了解决方案,使用这个

order-by="commentId desc"