作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
JMS 2.0 规范第 2.14 节:
JMS could have required that all its objects support concurrent use. Since support for concurrent access typically adds some overhead and complexity, the JMS design restricts its requirement for concurrent access to those objects that would naturally be shared by a multi-threaded client. The remaining objects are designed to be accessed by one logical thread of control at a time.
支持并发使用:目的地、连接工厂、连接
不支持并发使用:JMSContext、Session、生产者、消费者
不确定为什么规范中没有讨论 Message 的线程安全性?
编辑
消息线程安全吗?两个线程可以在没有竞争的情况下共享它吗?
没有。消息不是线程安全的。它不应该在线程之间共享。
最佳答案
消息不是线程安全的。消息是可变的,它有 setter ,因此当一个线程使用消息时,另一个线程可以干扰并更改它。
关于java - 消息线程安全,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20537463/
我是一名优秀的程序员,十分优秀!