最佳答案
Jackson库的ObjectMapper
类似乎是线程安全的。
这是否意味着我应该像这样将ObjectMapper
声明为静态字段
class Me {
private static final ObjectMapper mapper = new ObjectMapper();
}
而不是像这样的实例级字段?
class Me {
private final ObjectMapper mapper = new ObjectMapper();
}