You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/05/25 13:36:25 UTC

[camel-kamelets] 15/20: Bean: Use properties instead of property with key and value - PostgreSQL Sink

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch 1475-5
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 2838c099c9340b959a083e4d1802c39044300edc
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 15:26:45 2023 +0200

    Bean: Use properties instead of property with key and value - PostgreSQL Sink
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/postgresql-sink.kamelet.yaml | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/kamelets/postgresql-sink.kamelet.yaml b/kamelets/postgresql-sink.kamelet.yaml
index a0500e18..2df15ee8 100644
--- a/kamelets/postgresql-sink.kamelet.yaml
+++ b/kamelets/postgresql-sink.kamelet.yaml
@@ -94,15 +94,11 @@ spec:
     beans:
       - name: dsBean
         type: "#class:org.apache.commons.dbcp2.BasicDataSource"
-        property:
-          - key: username
-            value: '{{username}}'
-          - key: password
-            value: '{{password}}'
-          - key: url
-            value: 'jdbc:postgresql://{{serverName}}:{{serverPort}}/{{databaseName}}'
-          - key: driverClassName
-            value: 'org.postgresql.Driver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:postgresql://{{serverName}}:{{serverPort}}/{{databaseName}}'
+          driverClassName: 'org.postgresql.Driver'
     from:
       uri: "kamelet:source"
       steps: