56.4.2. charset
마샬링과 unmarshal
모두 MSH-18
필드에 제공된 charset을 평가합니다. 이 필드가 비어 있으면 기본적으로 해당 Camel charset 속성/header에 포함된 charset로 가정합니다. HL7DataFormat
클래스에서 상속될 때 guessCharsetName
메서드를 재정의하여 이 기본 동작을 변경할 수도 있습니다.
Camel에는 일반적으로 사용되는 잘 알려진 데이터 형식에 대한 단축 구문이 있습니다. 그런 다음 HL7DataFormat
개체의 인스턴스를 만들 필요가 없습니다.
from("direct:hl7in") .marshal().hl7() .to("jms:queue:hl7out"); from("jms:queue:hl7out") .unmarshal().hl7() .to("patientLookupService");