我在Java中使用Hibernate。MyEclipse + Hibernate不按ID排序屬性集?
我有兩個表與外鍵相關聯。
Table: country Fields: ID, Name POJO class name : Country POJO class properties: id, name, cities Table: city Fields: ID, Name, CountryID POJO class name : Country
然後我用MyEclipse的「hibernate reverse engineering」。它自動創建DAO,摘要和pojo類。
一切工作得很好。當我請求一個Country對象時,Hibernate檢索它,並填寫CountryID爲country.id的城市。
還是一切正常,但當我列出的「城市」屬性(java的設置類型),然後打印出我得到這個無序列表中的所有城市的標識:
ID: 5 ID: 1 ID: 4 ID: 2
我應該在哪裏編輯得到城市的有序我從CountryDAO類獲取國家實例時的ID?
安迪,謝謝你的考慮;但我仍然得到例外。你能檢查一下有什麼問題嗎? http://pastebin.ca/1410416 – 2009-05-02 16:03:09