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.
我正在使用 gson 1.7,我看到它在类的 toJson() 中有一个序列化块
final class ParameterizedTypeHandlerMap<T>{ .... public synchronized T getHandlerFor(Type type) { ....
如果我为每个请求创建对象,它也有一个正在构建的同步块。
我有几个问题:
我使用 gson 2,它对我来说与 1.7 相同。如果同步吓到您,您可以为每个线程创建一个 Gson 实例。