gpt4 book ai didi

java - 元组列表的 crudrepository findBy 方法签名

转载 作者:行者123 更新时间:2023-11-30 06:46:05 26 4
gpt4 key购买 nike

我有一个像这样的实体类:

@Entity
@Table(name = "CUSTOMER")
class Customer{
@Id
@Column(name = "Id")
Long id;
@Column(name = "EMAIL_ID")
String emailId;
@Column(name = "MOBILE")
String mobile;
}

如何使用 crudrepository spring data jpa 为以下查询编写 findBy 方法?

select * from customer where (email, mobile) IN (("a@b.c","8971"), ("e@f.g", "8888"))

我期待这样的事情

List<Customer> findByEmailMobileIn(List<Tuple> tuples);

我想从给定的配对中获取客户列表

最佳答案

我认为这可以用 org.springframework.data.jpa.domain.Specification 来完成.您可以传递元组列表并以这种方式处理它们(不要在意元组不是实体,但您需要定义此类):

public class CustomerSpecification implements Specification<Customer> {

// names of the fields in your Customer entity
private static final String CONST_EMAIL_ID = "emailId";
private static final String CONST_MOBILE = "mobile";

private List<MyTuple> tuples;

public ClaimSpecification(List<MyTuple> tuples) {
this.tuples = tuples;
}

@Override
public Predicate toPredicate(Root<Customer> root, CriteriaQuery<?> query, CriteriaBuilder cb) {
// will be connected with logical OR
List<Predicate> predicates = new ArrayList<>();

tuples.forEach(tuple -> {
List<Predicate> innerPredicates = new ArrayList<>();
if (tuple.getEmail() != null) {
innerPredicates.add(cb.equal(root
.<String>get(CONST_EMAIL_ID), tuple.getEmail()));
}
if (tuple.getMobile() != null) {
innerPredicates.add(cb.equal(root
.<String>get(CONST_MOBILE), tuple.getMobile()));
}
// these predicates match a tuple, hence joined with AND
predicates.add(andTogether(innerPredicates, cb));
});

return orTogether(predicates, cb);
}

private Predicate orTogether(List<Predicate> predicates, CriteriaBuilder cb) {
return cb.or(predicates.toArray(new Predicate[0]));
}

private Predicate andTogether(List<Predicate> predicates, CriteriaBuilder cb) {
return cb.and(predicates.toArray(new Predicate[0]));
}
}

你的仓库应该扩展接口(interface) JpaSpecificationExecutor<Customer> .

然后构造一个包含元组列表的规范并将其传递给方法customerRepo.findAll(Specification<Customer>) - 它返回客户列表。

关于java - 元组列表的 crudrepository findBy 方法签名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48032920/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com