我一直在寻找在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:匹配的通配符是严格的,但是找不到元素'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&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。
答案 0 :(得分:1)
请参阅本教程,了解如何在Web应用程序中使用Apache Camel:http://camel.apache.org/tutorial-on-using-camel-in-a-web-application.html
然后,您需要在WAR文件中包含所需的Camel组件及其依赖项,例如WEB-INF / lib中的JAR。
答案 1 :(得分:1)
我检查了你的代码,对我来说似乎没问题,也许你的问题在其他地方。
在这里,您可以找到有关如何使用camel创建HL7侦听器的教程。
http://ignaciosuay.com/how-to-create-a-camel-hl7-listener/
该项目是使用camel:run目标开发的,该目标用于在Maven的分叉JVM中运行Camel Spring配置。因此,如果你想在tomcat中运行它,你可以添加tomcat-maven-plugin并使用tomcat:run goal运行它。
希望它有所帮助!