Xalan的TransformerFactoryImpl是线程安全的吗?
org.apache.xalan.processor.TransformerFactoryImpl 类线程安全吗?或者我是否必须为每个线程保留本地副本?
Is the class org.apache.xalan.processor.TransformerFactoryImpl
thread safe? Or do I have to a keep local copy for each thread?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
根据 Xalan Transform API 文档:
According to the Xalan Transform API document:
看看 ,它看起来肯定不是线程安全的来源
It certainly doesn't look thread safe looking at the source
仔细查看源代码表明,如果您在第一次初始化后不调用 setter 方法,它应该是线程安全的。
Looking closely in the source suggests that it should be thread safe in case you don't call setter methods after first initialization.