我收到了org.springframework.beans.factory.BeanCreationException

时间:2015-03-18 06:18:24

标签: java mysql jpa hibernate-mapping querydsl

我无法使用@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);

如何执行此操作?这是对的吗?或者我必须做任何其他逻辑吗?

0 个答案:

没有答案