gpt4 book ai didi

java - 使用 Camel 在运行时配置数据源

转载 作者:太空宇宙 更新时间:2023-11-04 15:11:23 24 4
gpt4 key购买 nike

我确实在 Apache Camel 中设置了一个非常简单的路由,其中​​查询被发送到 JDBC 组件来执行。我启动并运行了 Camel 项目。我想要完成的是在 RabbitMQ 消息的 header 中发送 dataSource1 的数据库连接参数。我所说的连接参数是指 driverClassName、url、用户名、密码。我的应用程序的客户端将输入所有这些参数来决定连接到哪个数据库。我可能会根据 driverClassName 用户指定的内容使用路由表,但这是另一回事。

请注意,在此示例中,我将 SQL 语句放在一个文件中以使其更简单。我怎样才能做到这一点?

这是我的 Camel 上下文:

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

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:camel="http://camel.apache.org/schema/spring"
xmlns:jdbc="http://www.springframework.org/schema/jdbc"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd
http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc.xsd">

<camel:camelContext xmlns="http://camel.apache.org/schema/spring">
<camel:route>
<camel:from uri="file:src/data?noop=true"/>
<camel:to uri="jdbc:dataSource1"/>
<camel:convertBodyTo type="java.lang.String"/>
<camel:log message="${body}"/>
</camel:route>
</camel:camelContext>

<bean id="dataSource1"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/employees"/>
<property name="username" value="root"/>
<property name="password" value=""/>
</bean>
</beans>

和 Maven 项目:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>

<groupId>group1</groupId>
<artifactId>com.mycompany</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>

<name>A Camel Spring Route</name>
<url>http://www.myorganization.org</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>

<dependencies>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core</artifactId>
<version>2.12.2</version>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-spring</artifactId>
<version>2.12.2</version>
</dependency>

<!-- logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.5</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.5</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>

<!-- testing -->
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-test-spring</artifactId>
<version>2.12.2</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.26</version>
</dependency>

<!-- Jdbc -->
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-jdbc</artifactId>
<version>2.12.2</version>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>4.0.0.RELEASE</version>
</dependency>
</dependencies>

<build>
<defaultGoal>install</defaultGoal>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>

<!-- allows the route to be ran via 'mvn camel:run' -->
<plugin>
<groupId>org.apache.camel</groupId>
<artifactId>camel-maven-plugin</artifactId>
<version>2.12.2</version>
</plugin>
</plugins>
</build>
</project>

最佳答案

数据源是一个Spring bean。创建您自己的 bean 并让 Spring 注入(inject)数据源。然后您可以plug在 JDBC 步骤之前将该 bean 添加到您的路由中,并使用交换 header (应包含 JMS header )来更新数据源的属性。

但是,我认为这种设计方法是自找麻烦:

  • 如果您曾经想使用池数据源(而且您应该这样做),那么您需要重置连接池,这是昂贵的
  • 您需要同步(单例)数据源的状态修改,因为它在这方面不是线程安全的,并且您在多线程框架中使用 Camel
  • 您正在发送各地数据库的用户名和密码,您应该在传输过程中保护该信息

可能还有更多...

关于java - 使用 Camel 在运行时配置数据源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21297150/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com