gpt4 book ai didi

java - 如何使用 HL7 监听器配置 Apache Camel 并部署在 Tomcat 中

转载 作者:行者123 更新时间:2023-11-28 22:43:19 26 4
gpt4 key购买 nike

我一直在研究在 Tomcat 中使用 Camel 从指定端口路由 HL7 数据,以由持久层处理。我真的很难理解如何做到这一点。我正在使用 Tomcat without Spring code作为基本配置示例。 Camel HL7 详细信息是 here .我真的不明白如何更改 uri(或创建适当的 web.xml 和 camel-config-xml 文件)以便它将监听 MLLP 连接,然后路由到适当的处理类。根据文档,uri 是:

mina:tcp://localhost:8888?sync=true&codec=#hl7codec

到目前为止,我有一个像这样的 spring-servlet.xml(错误 cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'camel:camelContext') :

<?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:context="http://www.springframework.org/schema/context"
xmlns:jms="http://www.springframework.org/schema/jms"
xmlns:camel="http://activemq.apache.org/camel/schema/spring"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://activemq.apache.org/camel/schema/spring
http://activemq.apache.org/camel/schema/spring/camel-spring.xsd">
<bean id="hl7codec" class="org.apache.camel.component.hl7.HL7MLLPCodec">
<property name="charset" value="iso-8859-1"/>
</bean>

<bean id="hl7MessageHandler" class="util.HL7MessageHandlerService"/>

<camelContext id="hl7listener" xmlns="http://camel.apache.org/schema/spring">
<route>
<from uri="mina:tcp://localhost:8888?sync=true&amp;codec=#hl7codec"/>
<to uri="bean:hl7MessageHandler?method=lookupPatient"/>
</route>
</camelContext>
</beans>

和这样的 web.xml:

<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

<display-name>HL7 Consumer</display-name>

<!-- location of spring xml files -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring-servlet.xml</param-value>
</context-param>

<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<servlet>
<servlet-name>CamelServlet</servlet-name>
<servlet-class>org.apache.camel.component.servlet.CamelHttpTransportServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
<servlet-name>CamelServlet</servlet-name>
<url-pattern>/camel/*</url-pattern>
</servlet-mapping>

</web-app>

我不太明白如何配置 Camel 路由,然后确保传入的消息传递给 HL7MessageHandler。

最佳答案

请参阅有关在 Web 应用程序中使用 Apache Camel 的教程:http://camel.apache.org/tutorial-on-using-camel-in-a-web-application.html

然后您需要在 WAR 文件中包含所需的 Camel 组件及其依赖项,例如 WEB-INF/lib 中的 JAR。

关于java - 如何使用 HL7 监听器配置 Apache Camel 并部署在 Tomcat 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19108614/

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