java 嵌套对象序列化_java – 如何序列化限制序列化深度的嵌套...

如果你可以从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序列化器的代码.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值