Camel Spring Boot Starter for hl7
Spring Boot Auto-Configuration
When using hl7 with Spring Boot make sure to use the following Maven dependency to have support for auto configuration:
<dependency>
<groupId>org.apache.camel.springboot</groupId>
<artifactId>camel-hl7-starter</artifactId>
<version>x.x.x</version>
<!-- use the same version as your Camel core version -->
</dependency>
The component supports 5 options, which are listed below.
Name | Description | Default | Type |
---|---|---|---|
camel.dataformat.hl7.content-type-header | Whether the data format should set the Content-Type header with the type from the data format if the data format is capable of doing so. For example application/xml for data formats marshalling to XML, or application/json for data formats marshalling to JSON etc. | false | Boolean |
camel.dataformat.hl7.enabled | Whether to enable auto configuration of the hl7 data format. This is enabled by default. | Boolean | |
camel.dataformat.hl7.validate | Whether to validate the HL7 message Is by default true. | true | Boolean |
camel.language.hl7terser.enabled | Whether to enable auto configuration of the hl7terser language. This is enabled by default. | Boolean | |
camel.language.hl7terser.trim | Whether to trim the value to remove leading and trailing whitespaces and line breaks | true | Boolean |