ObjectToJMSMessage的正确端点是什么?

时间:2017-07-09 08:44:58

标签: jms mule

我是Mule的新手,我真的很喜欢Anypoint Studio。我试着给ActiveMQ发消息。我发现如果我在字符串Payload之后直接放JMS,那么它可以工作,我可以在ActiveMQ中获取消息。如下所示:

enter image description here

但是如果我把一个Object放到JMSMessage变换器中:

enter image description here

它不断发出错误:java.lang.IllegalStateException: This transformer needs a valid endpoint。我几乎尝试了各种端点,但没有用。我想知道变压器的正确端点应该是什么?

代码非常简单:

<?xml version="1.0" encoding="UTF-8"?>

<mule xmlns:json="http://www.mulesoft.org/schema/mule/json" xmlns:wmq="http://www.mulesoft.org/schema/mule/ee/wmq" xmlns:db="http://www.mulesoft.org/schema/mule/db" xmlns:jms="http://www.mulesoft.org/schema/mule/jms" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation"
    xmlns:spring="http://www.springframework.org/schema/beans" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/jms http://www.mulesoft.org/schema/mule/jms/current/mule-jms.xsd
http://www.mulesoft.org/schema/mule/db http://www.mulesoft.org/schema/mule/db/current/mule-db.xsd
http://www.mulesoft.org/schema/mule/json http://www.mulesoft.org/schema/mule/json/current/mule-json.xsd
http://www.mulesoft.org/schema/mule/ee/wmq http://www.mulesoft.org/schema/mule/ee/wmq/current/mule-wmq-ee.xsd">
    <http:listener-config name="HTTP_Listener_Configuration" host="localhost" port="8081" doc:name="HTTP Listener Configuration"/>
    <jms:activemq-connector name="Active_MQ" brokerURL="tcp://localhost:61616" validateConnections="true" doc:name="Active MQ" specification="1.1" password="admin" username="admin"/>
    <flow name="basic_tutorialFlow">
        <http:listener config-ref="HTTP_Listener_Configuration" path="/" doc:name="HTTP"/>
        <set-payload value="hello world" doc:name="Set Payload"/>
        <jms:object-to-jmsmessage-transformer doc:name="Object to JMSMessage"/>
        <jms:outbound-endpoint  connector-ref="Active_MQ" doc:name="JMS" topic="mytopic"/>
        <object-to-string-transformer doc:name="Object to String"/>
    </flow>
</mule>

2 个答案:

答案 0 :(得分:1)

JMS在流量元素之间使用时,作为出站终点(如果你观察你的xml它已经拥有它&#34; jms:outbound-endpoint &#34;。意味着什么它需要有效负载将它发布到您已配置JMS端点的队列或主题中)。

通常在您的方案中,您不需要在JMS出站终点之前拥有转换器Mule会为您隐式转换消息。因此,您可以创建一个新流或正在读取此队列/主题的应用程序,这是一个JMS入站端点( jms:inbound-endpoint ),具体取决于放置JMS组件mule所确定的位置它是入境还是出境。)

有了这个,你所实现的是可靠性模式。您可以在此处阅读更多相关信息。

https://docs.mulesoft.com/mule-user-guide/v/3.8/reliability-patterns

答案 1 :(得分:0)

您需要在JMS组件内使用“从对象到JMSMessage”转换器,以及同样的“从JMSMessage到对象”转换器。

示例:我使用了“ Object to JMSMessage”转换器,因为我希望将有效载荷(java.util.Hashmap)转换为MapMessage,而不是String。直观地讲,您应该将转换器放在JMS组件之前。

要执行此操作而不会出现错误java.lang.IllegalStateException: This transformer needs a valid endpoint,则必须在JMS组件中找到“ Transformer”设置,然后在其中添加变压器。

因此,对于将消息写入队列的JMS组件,您可以在Request期间添加要引用的转换器: Transformer settings for JMS writing messages to the queue

当您单击绿色加号以将要应用于消息的转换器添加到消息中之前,您可以选择在Mulesoft流中使用常规转换器组件时显示的设置。

Transformer Settings

在我的示例中,我将返回类输入为javax.jms.MapMessage

类似地,对于从JMS队列接收消息的JMS组件,您可以在“ Transformers Reference:Response”框中添加Transformers,然后在设置中输入您希望将JMS消息转换为的类。这对于任何名称中带有“ JMSMessage”的转换器都适用。

(注意:我使用的是Anypoint 6.6.3,Mule ESB 3.9.1,Mule 3,因此这可能不适用于Mule 4)