작은 질문에 나는 같은 것을 할 경우 :최대 절전 제한 및/또는 주문 Restrictions.or 및 Restrictions.and</p> <p>에 대한
(A and B) or (C and D) (following mathematical conventions)
:
...
criterion = criterionA;
criterion = Restrictions.and(criterion, criterionB);
criterion = Restrictions.or(criterion, criterionC);
criterion = Restrictions.and(criterion, criterionD);
이은으로 처리됩니다 또는 제한이 추가 된 순서대로 처리됩니다.
(((A and B) or C) and D)
어떤이있는 경우
또한 최초의 솔루션을 원하는 경우에
이 그것은 후자(((A and B) or C) and D)
로 처리해야
당신은 정말 일을 믹싱 :
(A와 B) 또는 (C와 D는)로 변환해야합니다. 변수 선언에서 final을 사용해보십시오. – whiskeysierra