3

我使用 JavaEE 8 在 liberty 18.0.0.2 上工作。
我创建了这样的自定义 jms 对象消息:

public class MyTextMessage extends implements Serializable {
    private String text;
    private String destination;
    private LocalDateTime dateTime;

    public MyTextMessage(String text, String destination, LocalDateTime dateTime) {
        this.text = text;
        this.destination = destination;
        this.dateTime = dateTime;
    }

    public MyTextMessage() {
    }

    // Getter and Setter 

    @Override
    public String toString() {
        return "MyTextMessage{" +
                "text='" + text + '\'' +
                ", destination='" + destination + '\'' +
                ", dateTime=" + dateTime +
                '}';
    }
}

如何按对象属性选择队列?
这是我的代码,但不起作用:

JMSConsumer consumer = context.createConsumer(destination, "destination='abcdefg'");
 Message message = consumer.receiveNoWait();
 if (message != null) {
      MyTextMessage myTextMessage = message.getBody(MyTextMessage.class);
      System.out.println(myTextMessage);
 }    
4

1 回答 1

3

您正在尝试选择 ObjectMessage 实现的属性,该实现在技术上是消息正文的一部分。但是,JMS 2 规范的第 3.8.1 节指出:

消息选择器不能引用消息正文值。

A message selector matches a message when the selector evaluates to true when the message's header field and property values are substituted for their corresponding identifiers in the selector.

因此,您需要使用可以选择的值在消息上设置一个属性(例如,使用javax.jms.Message.setStringProperty("destination", "abcdefg"))。

于 2018-10-22T01:54:07.207 回答