我在List
方法中使用Restrictions.in
对象,现在我必须在Restrictions.like
中使用这种情况
但是Restrictions.like
不接收List
参数。我怎么解决这个问题?
我的代码是底部的:
public void setPhones(Set<String> phones) {
this.phones.addAll(phones);
if (!this.phones.isEmpty()) {
aliases.add(new QueryAlias("profile", "profile"));
criterions.add(Restrictions.like("profile.phone", this.phones));
}
}
最佳答案
更正我之前(现在已编辑)的答案
根据文档(https://docs.jboss.org/hibernate/orm/5.4/javadocs/org/hibernate/criterion/Restrictions.html),似乎您没有直接的方法来执行此操作。
您可以尝试迭代您的列表,然后为每个电话创建一个Restriction.like列表,然后将此列表转换为数组以用于Restrictions.or:
public void setPhones(Set<String> phones) {
this.phones.addAll(phones);
if (!this.phones.isEmpty()) {
// Creates a list to store criterions
List<Criterion> criterionsPhoneNumbers = new ArrayList<>();
// For each number searched, it creates a criterion with a "Like Restriction" adding to criterionsPhoneNumbers List.
// Pay attention to match mode (in raw sql it'll be a "like" using %phoneNumber% - check the generated SQL by hibernate).
// You can change this to suit your needs.
for (String number : numbers) {
aliases.add(new QueryAlias("profile", "profile"));
criterionsPhoneNumbers.add( Restrictions.like("number", number, MatchMode.ANYWHERE) ) ;
}
// Here criterionsPhoneNumbers is being converted to array then added to the criteria with "Or Restriction"
criteria.add(Restrictions.or( criterionsPhoneNumbers.toArray(new Criterion[restrictionsPhoneNumbers.size()]) ));
}
}
我之前的回答是错误的,因为将每个电话号码添加为Restriction.like(仅)是不够的,并且在“ where”子句中使用逻辑“ and”将其转换为sql。由于我没有进行测试,所以看不到错误。
我已经实现了,然后看到了错误。
我很抱歉。
关于java - 如何在Restrictions.like中使用List <String>参数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60341986/