我在DAO添加了這個:與返回的對象JPA @Query問題
@Query("SELECT distinct LBL.cId, LBL from FooBar LBL ORDER BY LBL.collectedAt DESC")
List<FooBar> findDistinctcIdOrderByCollectedAtDesc();
然後這是我的服務
List<FooBar> fooBars = this.liveBusLocationDao.findDistinctcIdOrderByCollectedAtDesc();
這是我得到了什麼,當我調試內容fooBars
fooBars = {[email protected]} size = 1
0 = {Object[2]@11093}
0 = "string"
1 = {[email protected]} "FooBar(cId=string, internalcId=123456789012, createdAt=2011-11-02 02:59:12.208, collectedAt=2017-10-06 14:26:26.544)"
如何遍歷此結果?
這是春天的數據JPA不是JPA API。即沒有這樣的'JPA @ Query'。也許正確標記你的問題 – DN1