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 4 options, which are listed below.
Name | Description | Default | Type |
---|---|---|---|
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 |