有一个简单的POJO - Category
,其中Set<Category>
为子类别。嵌套可能非常深,因为每个子类别可能包含子子类别等等。
我想通过jersey返回Category
作为REST资源,序列化为json(由jackson提供)。问题是,我无法真正限制序列化的深度,因此所有类别树都被序列化。
有没有办法在第一级完成后立即停止杰克逊序列化对象(即Category
及其第一级子类别?)
答案 0 :(得分:3)
如果你可以从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<Category> subCategories;
public Set<Category> getSubCategories() {
Set<Category> 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<Integer> depthLimit = new ThreadLocal<>();
public static void limitSubCategoryDepth(int max) {
depthLimit.set(max);
}
public static void unlimitSubCategory() {
depthLimit.remove();
}
如果你无法从POJO获得深度,你需要制作一个深度有限的树拷贝,或者学习如何编写自定义Jackson序列化器的代码。