作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 MQ JMS 接口(interface)和 MQ 6.0.2。
似乎只支持预定义的属性,而不是任意的。
例如,我可以正确地 getJMSCorrelationID()
, getJMSPriority()
等等。但是,当我在发件人上设置任意属性时:
message.setStringProperty("my arbitrary name", "value");
message.getStringProperty("my arbitrary name");
null
.
最佳答案
如果你有完整的客户端安装,你可以去 C:\Program Files\IBM\WebSphere MQ\tools\jms\samples\interactive\
或 /opt/mqm/samp
中的某处并寻找 SampleConsumerJava.java
和 SampleProducerJava.java
.
从示例 Producer 程序中:
// Set custom properties
msg.setStringProperty("MyStringProperty", "My Year Of Birth");
msg.setIntProperty("MyIntProperty", 2007);
// Get values for custom properties, if available
String property1 = msg.getStringProperty("MyStringProperty");
// Get value for an int property, store the result in long to validate
// the get operation.
long property2 = ((long) Integer.MAX_VALUE) + 1;
property2 = msg.getIntProperty("MyIntProperty");
if ((property1 != null) && (property2 < Integer.MAX_VALUE)) {
System.out.println("[Message has my custom properties]");
关于properties - 如何在 IBM MQ JMS 接口(interface)上使用 JMS 属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5847248/
我是一名优秀的程序员,十分优秀!