gpt4 book ai didi

java - 部署 Apache Camel 项目

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:19:17 24 4
gpt4 key购买 nike

我使用 spring 配置创建了一个 Camel 项目,现在我需要在我的生产环境中部署和运行它。基本上,它是一个监听 RabbitMQ 代理的进程,并在发送消息时对其进行处理。我正在使用 eclipse,我为此目标创建了一个调试/运行配置:

camel:run

使用Spring配置文件定义route和bean,我没有写主类,如何部署运行呢?我无法在生产环境中重新编译该项目,因为我无法安装新软件,因此,运行我的流程所需的一切都必须从我的开发环境中复制。

有什么提示吗?谢谢!

最佳答案

http://camel.apache.org/running-camel-standalone.html

http://camel.apache.org/running-camel-standalone-and-have-it-keep-running.html

描述允许您部署/运行的机制。

camel:run 本质上与创建加载 Spring 应用程序上下文的 org.apache.camel.spring.Main 类相同。它可以很简单:

public static void main( final String[] args) {

Main main = new Main();
main.setApplicationContextUri("classpath:META-INF/applicationContext.xml");
main.enableHangupSupport();

try {
main.run();
} ...
}

这与 camel:run 目标基本相同。

为了正确部署,您可能需要使用 maven assembly pluginmaven shade plugin .这将允许您创建一个可以部署的 Artifact (zip、jar 等)。相同的代码,相同的路由定义。

关于java - 部署 Apache Camel 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14814693/

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