我正在创建一个示例匹配器,其中我只希望匹配几个属性。现在,我必须通过创建这样的黑名单来忽略所有我不想匹配的属性
ExampleMatcher matcher = ExampleMatcher.matching()
.withIgnorePaths(
"property1",
"property2",
"property3"
);
我宁愿使用白名单,也可以只指定我要匹配的属性,这样比较理想。
ExampleMatcher matcher = ExampleMatcher.matching()
.withMatchPaths(
"property4",
"property5"
);
有什么办法可以做到这一点?