Camel Spring Boot Starter for zip-deflater
Spring Boot Auto-Configuration
When using zip-deflater 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-zip-deflater-starter</artifactId>
<version>x.x.x</version>
<!-- use the same version as your Camel core version -->
</dependency>
The component supports 3 options, which are listed below.
Name | Description | Default | Type |
---|---|---|---|
camel.dataformat.gzipdeflater.enabled | Whether to enable auto configuration of the gzipdeflater data format. This is enabled by default. | Boolean | |
camel.dataformat.zipdeflater.compression-level | To specify a specific compression between 0-9. -1 is default compression, 0 is no compression, and 9 is best compression. | -1 | Integer |
camel.dataformat.zipdeflater.enabled | Whether to enable auto configuration of the zipdeflater data format. This is enabled by default. | Boolean |