我无法使用@Query方法在hibernate JPA QueryDSL中执行此查询。在我的存储库中使用此查询时,它提供了以下异常,'org.springframework.beans.factory.BeanCreationException'..
@Query("SELECT id,date,customer_id, SUM(price) AS price, GROUP_CONCAT(description ORDER BY customer_id DESC SEPARATOR ',') AS description, category FROM #{#entityName} e WHERE product_id = :productId GROUP BY category")
public Iterable<Product> findByProductId(@Param("productdId") int productId);
如何执行此操作?这是对的吗?或者我必须做任何其他逻辑吗?