如果你可以从POJO获得当前深度,你可以使用一个持有限制的ThreadLocal变量.在控制器中,在返回Category实例之前,在ThreadLocal整数上设置深度限制.
@RequestMapping("/categories")
@ResponseBody
public Category categories() {
Category.limitSubCategoryDepth(2);
return root;
}
在子类别getter中,您可以检查类别当前深度的深度限制,如果超过限制则返回null.
你需要以某种方式清理本地线程,也许使用spring的HandlerInteceptor :: afterCompletition.
private Category parent;
private Set subCategories;
public Set getSubCategories() {
Set result;
if (depthLimit.get() == null || getDepth() < depthLimit.get()) {
result = subCategories;
} else {
result = null;
}
return result;
}
public int getDepth() {
return parent != null? parent.getDepth() + 1 : 0;
}
private static ThreadLocal depthLimit = new ThreadLocal<>();
public static void limitSubCategoryDepth(int max) {
depthLimit.set(max);
}
public static void unlimitSubCategory() {
depthLimit.remove();
}
如果你无法从POJO获得深度,你需要制作一个深度有限的树拷贝,或者学习如何编写自定义Jackson序列化器的代码.