- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
这是关于 Camel 3 的第二个教程。在第一个(Camel 3 入门)中,我们讨论了如何设置一个基本的 Camel 3 项目并使用它运行一个简单的演示。现在我们将展示如何使用消息传递 API 连接到嵌入在 WildFly 分发中的远程 ArtemisMQ。
假设您已经建立了一个基本的 Camel 项目,让我们创建 Route 类,它负责将 JMS 消息发送到名为“demoQueue”的队列:
package com.mastertheboss.camel;
import org.apache.camel.builder.RouteBuilder;
public class MyJMSRouteBuilder extends RouteBuilder {
@Override
public void configure() throws Exception {
from("timer:foo?period=3s").transform(constant("Hello World")).to("jms:queue:demoQueue");
from("jms:queue:demoQueue").to("log:demoQueue");
}
}
RouteBuilder 类将每 3 秒发送一次包含“Hello World”的 JMS 消息。
现在 Camel Main 类开始路线:
package com.mastertheboss.camel;
import org.apache.camel.main.Main;
public static void main(String...args) throws Exception {
// use Camels Main class
Main main = new Main();
// and add the routes (you can specify multiple classes)
main.addRouteBuilder(MyJMSRouteBuilder.class);
// now keep the application running until the JVM is terminated
(ctrl + c or sigterm) main.run(args);
}
}
就这样。在我们的 application.properties 中,我们将设置 JMS 组件并连接到 ActiveMQ Artemis 代理:
camel.main.name = CamelJMSHelloWorld # properties used in the route myCron = 0/2 * * * * ? # setup JMS component with connection to ActiveMQ Artemis broker camel.component.jms.connection-factory.brokerURL=tcp://localhost:61616 camel.component.jms.connection-factory.target-connection-factory.user=guest camel.component.jms.connection-factory.target-connection-factory.password=guest
现在让我们转到 WildFly 方面。首先创建一个绑定到端口 61616 的 JMS 远程接受器:
/socket-binding-group=standard-sockets/socket-binding=artemis-server:add(port=61616) /subsystem=messaging-activemq/server=default/remote-acceptor=artemis-acceptor:add(socket-binding=artemis-server)
在 messaging susbsytem 中,您应该能够看到:
<subsystem xmlns="urn:jboss:domain:messaging-activemq:8.0"> <server name="default"> <!-- default configuration here --> <remote-acceptor name="artemis-acceptor" socket-binding="artemis-server"/> </server> </subsystem>
反过来,remote-acceptor 引用绑定到端口 61616 的套接字绑定:
<?xml version="1.0" encoding="UTF-8"?><socket-binding-group name="standard-sockets" default-interface="public" port-offset="${jboss.socket.binding.port-offset:0}">
<socket-binding name="artemis-server" port="61616"/>
<!-- Other bindings -->
</socket-binding-group>
接下来,让我们从 CLI 创建名为 demoQueue 的 JMS 队列:
jms-queue add --queue-address=demoQueue --entries=queues/demoQueue
最后,我们需要创建一个允许连接到 JMS 服务器的用户。在我们的 Camel 配置中,我们已经将其配置为 guest/guest,因此我们将使用 shell 脚本 add-user.sh 添加此用户:
$ ./add-user.sh What type of user do you wish to add? a) Management User (mgmt-users.properties) b) Application User (application-users.properties) (a): b Enter the details of the new user to add. Using realm 'ApplicationRealm' as discovered from the existing property files. Username : guest Password recommendations are listed below. To modify these restrictions edit the add-user.properties configuration file. - The password should be different from the username - The password should not be one of the following restricted values {root, admin, administrator} - The password should contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), 1 non-alphanumeric symbol(s) Password : WFLYDM0098: The password should be different from the username Are you sure you want to use the password entered yes/no? yes Re-enter Password : What groups do you want this user to belong to? (Please enter a comma separated list, or leave blank for none)[ ]: guest About to add user 'guest' for realm 'ApplicationRealm' Is this correct yes/no? yes Added user 'guest' to file '/home/francesco/jboss/wildfly-18.0.1.Final/standalone/configuration/application-users.properties' Added user 'guest' to file '/home/francesco/jboss/wildfly-18.0.1.Final/domain/configuration/application-users.properties' Added user 'guest' with groups guest to file '/home/francesco/jboss/wildfly-18.0.1.Final/standalone/configuration/application-roles.properties' Added user 'guest' with groups guest to file '/home/francesco/jboss/wildfly-18.0.1.Final/domain/configuration/application-roles.properties' Is this new user going to be used for one AS process to connect to another AS process? e.g. for a slave host controller connecting to the master or for a Remoting connection for server to server EJB calls. yes/no? yes
我们完了!在启动 Camel Main 之前,我们需要为项目中找到的依赖项生成自动装配,因此我们将运行:
mvn camel-main:generate
现在我们终于可以运行 Camel 主程序了:
mvn exec:java
您应该能够从 CLI 或 Web 控制台看到队列 demoQueue 中正在接收消息:
/subsystem=messaging-activemq/server=default/jms-queue=demoQueue:read-resource(include-runtime=true) { "outcome" => "success", "result" => { "consumer-count" => 1, "dead-letter-address" => "jms.queue.DLQ", "delivering-count" => 0, "durable" => true, "entries" => ["queues/demoQueue"], "expiry-address" => "jms.queue.ExpiryQueue", "legacy-entries" => undefined, "message-count" => 0L, "messages-added" => 24L, "paused" => false, "queue-address" => "jms.queue.demoQueue", "scheduled-count" => 0L, "selector" => undefined, "temporary" => false } }
我创建了一个 spring-boot 应用程序,我在其中使用 camel-reSTLet 组件将我的 camel 路由公开为 rest 端点。 我的 camel 路由很简单:它们接受来自北向休息端点的
我有一条路由 (route1),它将数据发送到 HTTP 端点。为此,它必须设置授权 header 。 header 值每小时超时一次,必须更新。 为此,我创建了另一个路由 (route2),它使用提
我正在使用 camel-cdi,它正在注入(inject) CamelContext,检测项目中的所有路由。但是我想要一个带有注册表的 CamelContext,因为我有一些在 Camel route
我想使用来自网络服务的数据并将其放入 Camel eh-cache 中。后来我想通过 CacheManager 在 Camel 上下文之外使用这个缓存。我没有找到任何方法。 在下面的代码中,我跳过了
问题描述: 我无法从我的 Camel servlet 路由到 cxfbean。路由初始化失败并显示以下错误消息: "Failed to create route route1 at: >>> To[c
我想了解 Camel 中的工作单元概念。我有一个简单的问题,希望这里有人可以提供帮助。 例如,如果路由 Exchange 涉及多个路由 from("aws-sqs:Q1").to("direct:pr
首先是我正在尝试做的事情的基本轮廓 我有一个 MQ,我想从 读取消息 预处理 XML,并在 Exchange 上设置属性 发出 HTTP 请求 处理来自 http 请求和初始交换中的属性的数据 将其放
我有一个 SFTP 路由(在 Spring XML 中),它的 from 路径以每日更改的目录(即/yyyyMMdd)结尾,并且在 autoCreate=true 时一切正常或者路径开始时目录存在。但
如何用 Camel 实现这样的过程: 拆分 处理每个拆分的项目 聚合结果 如果发生异常: 停止 split 返回异常前所有item的聚合结果及异常信息 split时定义.stopOnException
我在 Camel 中有一条路线,我想在发生异常时重试,但我想设置一个属性,以便路线第二次可以做一些稍微不同的事情,以尝试阻止错误在重试时再次发生。这是说明我目前正在尝试的想法的路线。 from("di
这两个有何不同 from(endpoint).to(endpoint:a, endpoint:b) from(endpoint).multicast().to(endpoint:a, endpoint
我的 Camel 路线如下(示例) from (activemq:xyz) --- 从 QUEUE 接收消息 to(smpp:abc) --- 提交短信至短信中心 to(cxf:hij) --- 基于
我的 Camel 路线如下(示例) from (activemq:xyz) --- 从队列接收消息 to(smpp:abc) --- 将消息提交给 SMSC to(cxf:hij) --- 基于 SM
当捕获异常时,有什么方法可以停止路由执行(显示日志消息后)? java.lang.IllegalA
我正在使用 Camel 进行集成。我有一个用例,其中 Camel 应该将 1 条消息从一个队列传输到另一个队列,但它不断向队列发送相同的消息。请查看我的以下路线: ProducerTemplate正在
当异常在多播内部抛出时,Camel 不会传播异常。 考虑到以下设置,其中 direct:route 从其 beanRef 抛出异常: rest("/...") .pos
有没有办法使用生产者模板设置 Camel 交换属性? 想象一个接收客户订单的休息端点(尚未在 Camel route )。使用生产者模板,我想 在交易所上设置客户 ID 属性。 稍后在路由 需要时使用
再见,我的基本要求是有一个可以发送消息的路由,并将其放在 JMS 队列中。 camel 上下文在 JavaEE 6 容器中运行,即 JBoss AS 7.1.1,因此它是 HornetQ for JM
Camel 2.23.1 Karaf 4.2.4 白羊座蓝图(用于注册所有内容的外部容器) Camel 蓝图(用于 Camel 路线) Camel CXF(用于 rsServer) CXF 核心(用于
现在我在 Java EE 7 应用程序上使用 JMS 2.0 和 Artemis 1.2.0,我想用 Camel 做一些集成任务。 现在查看 camel-jms 文档,没有提及如何使用通用的 came
我是一名优秀的程序员,十分优秀!