gpt4 book ai didi

java - 如何序列化限制序列化深度的嵌套对象?

转载 作者:行者123 更新时间:2023-11-30 08:26:05 25 4
gpt4 key购买 nike

有一个简单的 POJO - CategorySet<Category>作为里面的子类别。嵌套可能很深,因为每个子类别都可能包含子类别等。我想返回 Category作为 REST 资源通过 Jersey ,序列化为 json(由 jackson )。问题是,我不能真正限制序列化的深度,因此所有类别树都被序列化了。

有什么方法可以在第一级完成后立即停止 jackson 序列化对象(即 Category 及其第一级子类别)?

最佳答案

如果您可以从 POJO 获取当前深度,则可以使用包含限制的 ThreadLocal 变量来实现。在 Controller 中,在返回 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 序列化程序。

关于java - 如何序列化限制序列化深度的嵌套对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21788434/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com