File tree 1 file changed +32
-0
lines changed
1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -182,3 +182,35 @@ Use CurrentRequestFilterContext. It is handle current request based on ThreadLo
182
182
return e;
183
183
}
184
184
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
+
You can’t perform that action at this time.
0 commit comments