Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有我想是静态的字段的类。无论如何我可以使用杰克逊来创建这个类的实例吗?现在杰克逊正在忽略静态领域。
这是一个例子。
杰森:
{ "index": "xyz" }
Java类:
public class Foo { private static String index; .. .. }
这有一个杰克逊问题。而且还没有解决。其中一位程序员发表了评论:
...我还没有遇到过它的实际用途。
混合这个,我建议你找到改变你的逻辑并使这个变量非静态或将它提取到另一个类的方法。