使用Example
创建匹配规则(非必须)
ExampleMatcher matcher = ExampleMatcher.matching()
.withMatcher("typeName", ExampleMatcher.GenericPropertyMatchers.ignoreCase());
第一个参数可以是数据库真实字段,也可以是实体类名。第二个是匹配规则。默认区分大小写。
创建Example
Example<SafetyBuildType> where = Example.of(type);
Example<SafetyBuildType> where = Example.of(type, matcher);
没有匹配规则的话,只传实体类就可以了。
评论已关闭