Skip to content

Commit e886ae2

Browse files
committed
Update README.md
1 parent de81d76 commit e886ae2

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

README.md

+32
Original file line numberDiff line numberDiff line change
@@ -182,3 +182,35 @@ Use CurrentRequestFilterContext. It is handle current request based on ThreadLo
182182
return e;
183183
}
184184

185+
### Apply predefined sets
186+
187+
If you reusable predeinfed set.
188+
189+
First, Define Set:
190+
191+
class SamplePropertySet1 extends PredefinedSet {
192+
@Override
193+
public String[] excludeProperties() {
194+
return new String[] { "age", "address" };
195+
}
196+
}
197+
198+
199+
Second, apply that set:
200+
201+
@RequestMapping("/do5")
202+
@JsonFilter(predefinedSet = { SamplePropertySet1.class })
203+
public @ResponseBody
204+
Employee do5() {
205+
return e;
206+
}
207+
208+
You can mix:
209+
210+
@RequestMapping("/do5")
211+
@JsonFilter(predefinedSet = { SamplePropertySet1.class }, includeProperty={"address})
212+
public @ResponseBody
213+
Employee do5() {
214+
return e;
215+
}
216+

0 commit comments

Comments
 (0)