sql >> データベース >  >> RDS >> PostgreSQL

JSONオブジェクトを返すRESTサービスを読み取り、Mule ESB、MuleStudioを使用してPostgreSQLに保存する方法

    JSON全体を保存する必要があるため、JSONをオブジェクトとして逆シリアル化する必要はありません。HTTPストリーミングされたペイロードをjava.lang.Stringに変換することをお勧めします。 そのままDBに挿入します。

    これは次のようになります:

    <jdbc:postgresql-data-source name="PostgreSQL_Data_Source"
        user="username" password="pwd" url="jdbc:postgresql://localhost:5432/TestDB"
        transactionIsolation="UNSPECIFIED" doc:name="PostgreSQL Data Source" />
    
    <jdbc:connector name="PostgreSQL_Connector" dataSource-ref="PostgreSQL_Data_Source"
        validateConnections="true" queryTimeout="-1" pollingFrequency="0"
        doc:name="Database">
        <jdbc:query key="InsertRecord"
            value="INSERT INTO &quot;AnotherJSonTable&quot;(&quot;StoreJsonObject&quot;) VALUES (CAST(#[message.payload] AS json))" />
    </jdbc:connector>
    
    <flow name="testRestFlow1" doc:name="testRestFlow1">
        <http:inbound-endpoint exchange-pattern="request-response"
            address="http://localhost:8082/index.html" doc:name="HTTP" />
        <http:rest-service-component httpMethod="GET"
            serviceUrl="http://localhost:35798/RestServiceImpl.svc/json/567" />
        <object-to-string-transformer />
        <jdbc:outbound-endpoint exchange-pattern="one-way"
            queryKey="InsertRecord" queryTimeout="-1" connector-ref="PostgreSQL_Connector"
            doc:name="Database" />
    </flow>
    



    1. MySQLのリレーショナルテーブルにExcelデータをインポートする

    2. 複合キーの行のグループごとのシリアル番号

    3. PostgreSQLはデータベースをどこに保存しますか?

    4. MySQLでBTREEの代わりにHASHを使用できるのはいつですか