You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/10/13 17:49:28 UTC

[camel-examples] branch main updated: Fix example

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

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-examples.git


The following commit(s) were added to refs/heads/main by this push:
     new d37d3b27 Fix example
d37d3b27 is described below

commit d37d3b279e4e28d140431a976c0004a4e9359bc6
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Fri Oct 13 19:49:08 2023 +0200

    Fix example
---
 jooq/src/main/resources/META-INF/spring/jooq-spring.xml | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/jooq/src/main/resources/META-INF/spring/jooq-spring.xml b/jooq/src/main/resources/META-INF/spring/jooq-spring.xml
index d0fa0388..5e221220 100644
--- a/jooq/src/main/resources/META-INF/spring/jooq-spring.xml
+++ b/jooq/src/main/resources/META-INF/spring/jooq-spring.xml
@@ -35,13 +35,8 @@
         <property name="password" value="${db.password}"/>
     </bean>
 
-    <bean id="transactionAwareDataSource"
-          class="org.springframework.jdbc.datasource.TransactionAwareDataSourceProxy">
-        <constructor-arg ref="dataSource"/>
-    </bean>
-
     <bean class="org.jooq.impl.DataSourceConnectionProvider" name="connectionProvider">
-        <constructor-arg ref="transactionAwareDataSource"/>
+        <constructor-arg ref="dataSource"/>
     </bean>
 
     <bean id="dsl" class="org.jooq.impl.DefaultDSLContext">