解组线程安全吗?

时间:2014-09-09 15:12:27

标签: soap jaxb thread-safety

我正在使用方法

javax.xml.bind.Unmarshaller.unmarshal(Source source, Class<RX> declaredType) 

并想知道此方法是否是线程安全的。否则,我将不得不在每次调用时实例化一个Unmarshaller

1 个答案:

答案 0 :(得分:4)

Unmarshaller.unmarshal不是线程安全的。

来自:https://javaee.github.io/jaxb-v2/doc/user-guide/ch03.html#other-miscellaneous-topics-performance-and-thread-safety

  

JAXBContext类是线程安全的,但是Marshaller,   Unmarshaller和Validator类不是线程安全的。