我是Mule Studio的新手。

我正面临一个问题。我有一个需要使用Mule Studio将数据从CSV文件插入PostgreSQL数据库的要求。

我正在使用Mule Studio CE(版本:1.3.1)。我在Google中查看了ed,发现我们可以使用Data-mapper这样做。但它仅适用于EE。因此我无法使用它。

另外,我正在网上检查并找到了Using Mule Studio to read Data from PostgreSQL(Inbound) and write it to File (Outbound) - Step by Step approach文章。

这似乎可行,但我的要求与所给文章相反。我需要"file"作为入站数据,而“数据库”作为“出站”组件。

这样做的方法是什么?

任何分步帮助(如使用哪些组件)和指导将不胜感激。

最佳答案

这是一个插入两列CSV文件的示例:

<configuration>
    <expression-language autoResolveVariables="true">
        <import class="org.mule.util.StringUtils" />
        <import class="org.mule.util.ArrayUtils" />
    </expression-language>
</configuration>

<spring:beans>
    <spring:bean id="jdbcDataSource" class=" ... your data source ... " />
</spring:beans>

<jdbc:connector name="jdbcConnector" dataSource-ref="jdbcDataSource">
    <jdbc:query key="insertRow"
        value="insert into my_table(col1, col2) values(#[message.payload[0]],#[message.payload[1]])" />
</jdbc:connector>

<flow name="csvFileToDatabase">
    <file:inbound-endpoint path="/tmp/mule/inbox"
        pollingFrequency="5000" moveToDirectory="/tmp/mule/processed">
         <file:filename-wildcard-filter pattern="*.csv" />
    </file:inbound-endpoint>

    <!-- Load all file in RAM - won't work for big files! -->
    <file:file-to-string-transformer />
    <!-- Split each row, dropping the first one (header) -->
    <splitter
        expression="#[rows=StringUtils.split(message.payload, '\n\r');ArrayUtils.subarray(rows,1,rows.size())]" />
    <!-- Transform CSV row in array -->
    <expression-transformer expression="#[StringUtils.split(message.payload, ',')]" />
    <jdbc:outbound-endpoint queryKey="insertRow" />
</flow>

关于mule - 如何使用Mule Studio的Mule ESB读取CSV文件并将数据插入PostgreSQL,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13911296/

10-11 19:33