Xalan的TransformerFactoryImpl是线程安全的吗?

发布于 2024-10-30 01:56:15 字数 83 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

踏雪无痕 2024-11-06 01:56:15

根据 Xalan Transform API 文档:

TransformerFactory 不能执行多个并发操作。

According to the Xalan Transform API document:

A TransformerFactory may not perform mulitple concurrent operations.

套路撩心 2024-11-06 01:56:15

It certainly doesn't look thread safe looking at the source

孤檠 2024-11-06 01:56:15

仔细查看源代码表明,如果您在第一次初始化后不调用 setter 方法,它应该是线程安全的。

Looking closely in the source suggests that it should be thread safe in case you don't call setter methods after first initialization.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文