2
我將創建一個新的Spring引導應用程序來獲取HL7消息並對其進行處理。在某些情況下,我需要使用MLLP協議進行數據傳輸。我們可以在java中實現相同的功能嗎?或者使用MLLP有什麼好處?MLLP連接
我將創建一個新的Spring引導應用程序來獲取HL7消息並對其進行處理。在某些情況下,我需要使用MLLP協議進行數據傳輸。我們可以在java中實現相同的功能嗎?或者使用MLLP有什麼好處?MLLP連接
我做到了用駱駝http://camel.apache.org/hl7.html
我已經配置在這樣的駱駝路線:
<bean id="hl7codec" class="org.apache.camel.component.hl7.HL7MLLPCodec">
<property name="charset" value="UTF-8" />
<property name="validate" value="false" />
</bean>
<route>
<from uri="mina2:tcp://10.0.0.1:2575 sync=true&codec=#hl7codecDebug" />
<log message="********* MINA2 Message received" />
<bean ref="hl7Processor" method="removeUtf8Bom" />
<process ref="hl7Processor" />
</route>
<bean id="hl7Processor" class="com.andreagirardi.MessageRouting.HL7.HL7Processor" />
所以我有收到HL7一個Mina2聽者,我處理傳遞消息使用類HL7Processor
請參閱http://hl7api.sourceforge.net/xref/ca/uhn/hl7v2/llp/MinLLPReader.html – xmojmr