1. 程式人生 > >jpa動態sql建立的相關問題

jpa動態sql建立的相關問題

參考:http://www.cnblogs.com/happyday56/p/4661839.html

如果需要or關係連線條件,

應該是在最後面,將條件predicates連結串列

List<Predicate> predicates = new ArrayList<Predicate>();

。。。。。(中間省略的是新增查詢條件的程式碼)

 

Predicate[] pre = new Predicate[predicates.size()];
Predicate p = criteriaBuilder.or(predicates.toArray(pre));