您好我需要使用和或条件进行复杂查询。但是条件似乎覆盖了这里的条件或条件:
public List<UtenteEntity> search(CartesioPojo params) {
CriteriaBuilder cb = entityManager.getCriteriaBuilder();
CriteriaQuery<UtenteEntity> q = cb.createQuery(UtenteEntity.class);
Root<UtenteEntity> c = q.from(UtenteEntity.class);
UtenteParams utente = (UtenteParams) params;
List<Predicate> p = new Vector<Predicate>();
if(utente.getUsername() != null && !utente.getUsername().equals(""))
p.add(cb.equal(c.get("username"), cb.literal(utente.getUsername())));
if(utente.getCognome() != null && !utente.getCognome().equals(""))
p.add(cb.and(cb.equal(c.get("cognome"), cb.literal(utente.getCognome()))));
if(utente.getRoles() != null && !utente.getRoles().isEmpty()) {
for (RuoloEntity ruolo : utente.getRoles()) {
p.add(cb.or(cb.equal(c.get("ruolo"), cb.literal(ruolo))));
}
}
q.where(p.toArray(new Predicate[p.size()]));
q.orderBy(cb.asc(c.get(USERNAME_COLUMN)));
TypedQuery<UtenteEntity> query = entityManager.createQuery(q);
List<UtenteEntity> result = query.getResultList();
return result;
}
当我对这种方法表示赞同时,这是控制台输出:
executing prepstmnt 2471808 SELECT t0.SEQU_LONG_ID, t0.DATA_AGGIORNAMENTO,
t0.DATA_CREAZIONE, t0.FK_UTENTE_AGGIORNAMENTO, t0.FK_UTENTE_CREAZIONE, t0.COGNOME,
t0.FLAG_DISABILITATO, t0.NOME, t0.PASSWORD, t1.SEQU_LONG_ID, t1.DATA_AGGIORNAMENTO,
t1.DATA_CREAZIONE, t1.FK_UTENTE_AGGIORNAMENTO, t1.FK_UTENTE_CREAZIONE, t1.CODICE,
t1.DESCRIZIONE, t0.USERNAME FROM UTENTE t0, RUOLO t1 WHERE
(t0.FK_RUOLO = ? AND t0.FK_RUOLO = ?) AND t0.FK_RUOLO = t1.SEQU_LONG_ID(+)
ORDER BY t0.USERNAME ASC [params=?, ?]
答案 0 :(得分:1)
对于谓词列表,您将在循环中添加包含单个元素的or子句:
p.add(cb.or(cb.equal(c.get("ruolo"), cb.literal(ruolo))));
你想要的是创建一个与or一起加入的谓词列表,并将这个长or
谓词添加到主列表中:
List<Predicate> disjunction = new ArrayList<Predicate>();
for (RuoloEntity ruolo : utente.getRoles()) {
disjunction.add(cb.equal(c.get("ruolo"), cb.literal(ruolo)));
}
p.add(cb.or(disjunction.toArray(new Predicate[disjunction.size()])));