Spring Data JPA周年纪念日

时间:2017-05-11 08:34:02

标签: hibernate spring-boot spring-data-jpa

我有一张桌子,可以将客户信息与他们的生日存储在DATE,没有时间。我今天如何查询列出生日礼物呢?

我尝试了一些DATE和MONTH关键字,但我失败了。

1 个答案:

答案 0 :(得分:-1)

您可以在Jpa存储库中创建一个方法来查找出生日期为

的客户
@Repository
@RepositoryRestResource
public interface CustomerRepository extends JpaRepository<Product, UUID> {
 Page<Product> findByDate(@Param("categoryId") UUID categoryId, Pageable pageable);
}