0

我是新手MuleESB。我对流量了解不多。我找不到Mule. 我正在尝试使用以下代码从数据库中获取数据,但我无法获取数据。没有显示错误,所以我不知道该怎么办。我的流程正确吗?

这是我的流程配置。

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

<mule xmlns:jdbc-ee="http://www.mulesoft.org/schema/mule/ee/jdbc" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:json="http://www.mulesoft.org/schema/mule/json" xmlns:mulexml="http://www.mulesoft.org/schema/mule/xml" 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" version="EE-3.4.1" 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/xml http://www.mulesoft.org/schema/mule/xml/current/mule-xml.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/ee/jdbc http://www.mulesoft.org/schema/mule/ee/jdbc/current/mule-jdbc-ee.xsd
http://www.mulesoft.org/schema/mule/json http://www.mulesoft.org/schema/mule/json/current/mule-json.xsd">
    <jdbc-ee:postgresql-data-source name="PostgreSQL_Data_Source" user="youtilitydba" password="Youtility11" url="jdbc:postgresql://localhost:5432/sample" transactionIsolation="UNSPECIFIED" doc:name="PostgreSQL Data Source"/>
    <jdbc-ee:connector name="Database" dataSource-ref="PostgreSQL_Data_Source" validateConnections="true" queryTimeout="-1" pollingFrequency="0" doc:name="Database"/>
    <flow name="selectfromdbFlow1" doc:name="selectfromdbFlow1">
        <http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8081" path="selectdb" doc:name="HTTP"/>
        <json:json-to-object-transformer returnClass="java.util.Map" doc:name="JSON to Object"/>
        <jdbc-ee:outbound-endpoint exchange-pattern="one-way" queryKey="SELECT" queryTimeout="-1" connector-ref="Database" doc:name="Database">
            <jdbc-ee:query key="SELECT" value="select  firstname,lastname,id  from users where id =#[message.payload.id]"/>
        </jdbc-ee:outbound-endpoint>
        <response>
            <http:response-builder status="200" contentType="application/json" doc:name="HTTP Response Builder"/>
        </response>
        <set-payload value="#[payload]" doc:name="Set Payload"/>
                <echo-component doc:name="Echo"/>
            </flow>
</mule>

我正在像这样从 curl 客户端发送请求

curl -H "Content-Type: application/json" -d '{"id":"5"}' http://192.168.25.24:8081/selectdb

它不提供和响应。

我期待像下面这样的回应。

 {"Body":{"Datalist":{"firstname":"ff","lastname":"ggg","id":"5"}},"Status":"200"}}

请帮我实现这一点。

甚至记录器语句也没有打印

<logger message="message of payload#[message.payload]" level="INFO" doc:name="Logger"/>

感谢任何帮助。

4

3 回答 3

1

您可以更好地使用<json:json-to-object-transformer returnClass="java.lang.Object" doc:name="JSON to Object"/>afterhttp:inbound-endpoint并确保您是否从请求中获取 id 值以及在 db 之后的有效负载之后

现在,如果您从数据库中获取数据并能够在使用 db 之后使用记录器打印它

<logger message="message of payload #[message.payload]" level="INFO" doc:name="Logger"/>

您可以通过以下方式明确设置对客户的响应:-

<http:response-builder status="200" contentType="application/json" doc:name="HTTP Response Builder">
    <set-payload value="#[message.payload]" doc:name="Set Payload"/>
</http:response-builder>

并且您可以从流程中删除<response/>标签,因为您正在使用<http:response-builder/>如上所述设置响应有效负载

于 2015-07-04T12:05:40.420 回答
0

我不能完全回答你的问题,但可以告诉你一些简单的方法来检查你的 muleMessage。第一种也是最简单的方法是像这样放置一个脚本转换器:

<script:transformer>
               <script:script engine="groovy">
                   <script:text>
                       System.out.println(payload);
                       return payload;
                   </script:text>
               </script:script>
</script:transformer>

命名空间:xmlns:script="http://www.mulesoft.org/schema/mule/scripting"

架构位置:http : //www.mulesoft.org/schema/mule/scripting http://www.mulesoft.org/schema/mule/scripting/current/mule-scripting.xsd

第二种选择更难的是创建自定义变压器。你需要创建一个 java 类,扩展 AbstractMessageTransformer。然后调试你的项目,看看消息是什么希望,这会有所帮助

于 2013-11-27T13:17:03.967 回答
0

无法获得您面临的完整问题。从帖子中,我可以看到需要进行的更改很少。

当您从Select Query 更改 中查找数据exchange-patternJBDC:Outboundrequest-response

<jdbc-ee:outbound-endpoint exchange-pattern="request-response" queryKey="SELECT" queryTimeout="-1" connector-ref="Database" doc:name="Database">

也不需要<set-payload>在流程结束时使用。由于消息中已经存在有效负载,因此这是一个多余的语句。

在记录器中尝试使用#[payload],因为打印有效负载更简单(来自 JBDC 查询的响应)

关于文档,MuleSoft 网站是查找 mule 文档的最佳位置,他们对 Mule 的大部分内容都有详细的文档。

Mule 用户指南和文档

希望这可以帮助。

于 2013-11-27T15:42:32.560 回答