Spring数据查询,其中列为null

时间:2015-04-04 15:43:31

标签: spring spring-data spring-data-jpa

假设我有实体(为了简洁省略了getter / setter和各种细节):

@Entity
class Customer{
    ...
    @OneToMany(cascade = CascadeType.ALL, mappedBy = "customer")
    Collection<Coupon> coupons;
}

@Entity
class Coupon{
    ...
    @Temporal(value = TemporalType.TIMESTAMP)
    private Date usedOn;

    @ManyToOne(fetch = FetchType.LAZY)
    @NotNull
    Customer customer;
}

我希望检索具有null usedOn的给定客户的所有优惠券。 我在docs

中描述的CouponRepository中未能成功定义方法
@Repository
public interface CouponRepository extends CrudRepository<Coupon, Long> {
     Collection<Coupon> findByCustomerAndUsedOnIsNull(Customer);
}

但这会导致编译错误Syntax error, insert "... VariableDeclaratorId" to complete FormalParameterList

3 个答案:

答案 0 :(得分:14)

我的错,正确的定义是

@Repository
public interface CouponRepository extends CrudRepository<Coupon, Long> {
     Collection<Coupon> findByCustomerAndUsedOnIsNull(Customer customer);
}

我只是错过了参数名称: - (

答案 1 :(得分:13)

尝试将您的方法更改为此(假设Customer.id很长):

Collection<Coupon> findByCustomer_IdAndUsedOnIsNull(Long customerId);

然后像这样使用:

repo.findByCustomer_IdAndUsedOnIsNull(customer.getId());

答案 2 :(得分:6)

您可以使用 IsNull 来检查JPA查询中的空列。

例如,对于任何 columnA ,您都可以编写类似查询的查询,例如

findByColumnAIsNull

在这种情况下,您可以编写类似的查询

@Repository
public interface CouponRepository extends CrudRepository<Coupon, Long> {
 Collection<Coupon> findByCustomerAndUsedOnIsNull(Customer customer);
 List<Coupon> findByUsedOnIsNull();
}

您还可以检查此查询的方式 here 请参考此Spring Data JPA查询创建,这将帮助您大量了解和创建不同类型的JPA查询变体。

enter image description here