class Foo {
Long id;
int type1;
int type2;
}
class FooQo {
@QueryCondition(field="name")
String name;
@QueryCondition(group="group1")
int type1;
@QueryCondition(group="group1")
int type2;
}
FooQo fooQo = new FooQo("foo", 1, 2);
Specification<Foo> specification = SpecificationFactory.getSpecification(fooQo);
List<Foo> foos = fooRepository.findAll(specification);
生成的SQL:
SELECT * FROM FOO
WHERE LOWER(FOO.NAME) = 'foo'
AND (FOO.TYP1 = 1
OR FOO.TYPE2 = 2);