使用DataMapper的Mulesoft Anypoint Studio问题 - 无法识别/感知输入源

时间:2015-06-17 07:34:29

标签: datamapper mule-studio mule-component

我遇到了datamapper功能的问题。我创建了一个流程,我在那里查询数据库,并希望将输出传递给datamapper,以便将其转换为一个良好的可读格式,例如xml。问题是当我在数据库连接器之后插入数据映射器时,它无法正确检测输入。此外,我无法为输入/输出选择实际的源和类型。

enter image description here

以下是我的配置XML:

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

<mule xmlns:data-mapper="http://www.mulesoft.org/schema/mule/ee/data-mapper" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:db="http://www.mulesoft.org/schema/mule/db" 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.6.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/http http://www.mulesoft.org/schema/mule/http/current/mule-http.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/ee/data-mapper http://www.mulesoft.org/schema/mule/ee/data-mapper/current/mule-data-mapper.xsd">
<http:listener-config name="HTTP_Listener_Configuration-2" host="0.0.0.0" port="8081" doc:name="HTTP Listener Configuration"/>
<db:mysql-config name="MySQL_Configuration" host="localhost" port="3306" user="user" password="XXXXX" database="test" doc:name="MySQL Configuration"/>
<flow name="sample2Flow">
<http:listener config-ref="HTTP_Listener_Configuration-2" path="/mysqlconnect" doc:name="HTTP"/>
<set-payload value="'mysql connect'" doc:name="Set Payload"/>
<db:select config-ref="MySQL_Configuration" doc:name="Database">
<db:parameterized-query><![CDATA[select * from employee where id=#[message.inboundProperties.'http.query.params'.id]]]></db:parameterized-query>
</db:select>
<data-mapper:transform doc:name="DataMapper"/>
<logger message="#[payload]" level="INFO" doc:name="Logger"/>
<echo-component doc:name="Echo"/>
</flow>
</mule>

2 个答案:

答案 0 :(得分:1)

当我刷新元数据时,数据集已开始工作。为此,我点击了工作室右下角的&#39;刷新元数据&#39;

此外,如果它没有出现,只需点击工作室画布。

答案 1 :(得分:-1)

删除数据映射器并重新添加,并确保在工具栏顶部启用数据检测,在数据库连接器配置中检查数据检测。