+-
java-如何在Spring Data JPA中跳过@Query中的@Param是否为空或为空
@Query(value = "Select f from Documents f " +
        "RIGHT JOIN f.documentStatus ds " +
        "where f.billingAccount.accountId  in :billingAccountIdList " +
        " and ds.statusCode in :paymentStatuses" +
        " and f.paymentDate < :paymentDate")
List<FinancialDocumentEntity> getFinancialDocumentsOverdue(@Param("billingAccountIdList")List<String> billingAccountIdList,
                                                           @Param("paymentStatuses") List<String> paymentStatuses,
                                                           @Param("paymentDate") Date paymentDate);

我有上述查询.如果为null或为空,可以跳过查询方法中的@paraam(“ paymentStatuses”)参数.

最佳答案
尝试改变

" and ds.statusCode in :paymentStatuses"

" and (:paymentStatuses is null or ds.statusCode in :paymentStatuses)"
点击查看更多相关文章

转载注明原文:java-如何在Spring Data JPA中跳过@Query中的@Param是否为空或为空 - 乐贴网