第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

我可以將 HQL 與 JPA 的 @Query 注釋一起使用嗎?

我可以將 HQL 與 JPA 的 @Query 注釋一起使用嗎?

qq_花開花謝_0 2023-08-04 15:01:40
我有兩個相同的查詢。一個正在運行,entityManager.createQuery()另一個@Query作為PagingAndSortingRepository. entityManager 查詢運行正常,但 @Query 注釋中的相同查詢返回錯誤??赡苁且驗锧Query注釋將查詢作為 JPQL 執(zhí)行,而將entityManager.createQuery()查詢作為 HQL 執(zhí)行?這是兩個例子:@Query(不起作用)@Repositorypublic interface UserRepository extends PagingAndSortingRepository<User, UUID> {    @Query("select p.user from Perspective p where p.organisation.id = 'c25c86a0-0d8e-4beb-9ba7-e38d932b8410'")    List<User> findUsers();}could not resolve property: lastname of: org.jembi.appstore.service.entities.Perspective// note: lastname is a property of user, not perspective.entityManager.createQuery(確實有效)    @Autowired    EntityManager entityManager;    @RequestMapping("/query")    @ResponseBody    public void testQuery() {        Query query = entityManager.createQuery("select p.user from Perspective p where p.organisation.id = 'c25c86a0-0d8e-4beb-9ba7-e38d932b8410'");        List<User> users = query.getResultList();        users.forEach(u -> System.out.println(u.getFirstname()));    }
查看完整描述

2 回答

?
UYOU

TA貢獻1878條經(jīng)驗 獲得超4個贊

這里有幾個錯誤:

  1. 您正在定義@Param("organisationId"),但不在任何地方使用它。

  2. 您正在加入 user: join User u,但從不使用它:與定義沒有任何關系Perspective,也沒有在where子句中使用。

嘗試這個查詢:

@Query("select p.user from Perspective p where p.organisation.id = :organisationId")
List<User> findUsers(@Param("organisationId") UUID organisationId, Pageable pageable);


查看完整回答
反對 回復 2023-08-04
?
一只萌萌小番薯

TA貢獻1795條經(jīng)驗 獲得超7個贊

@Query("select p.user from Perspective p join User u where p.organisation.id = 'c25c86a0-0d8e-4beb-9ba7-e38d932b8410'")
    List<User> findUsers(@Param("organisationId") UUID organisationId, Pageable pageable);
}

我建議你將其重寫為:

@Query("select p.user from Perspective p join User u where p.organisation.id = ?1")
    List<User> findUsers(String organisationId);
}

為什么String又不UUID呢?我敢打賭 HQL 不適用于 UUID。+ UUID 可以放入字符串中。
為什么我刪除了 Pageable?我在您的查詢中找不到您使用第二個參數(shù) [Pageable] 的位置。


查看完整回答
反對 回復 2023-08-04
  • 2 回答
  • 0 關注
  • 168 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網(wǎng)微信公眾號