Camel Spring Boot Starter for any23
Spring Boot Auto-Configuration
When using any23 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-any23-starter</artifactId>
<version>x.x.x</version>
<!-- use the same version as your Camel core version -->
</dependency>
The component supports 6 options, which are listed below.
Name | Description | Default | Type |
---|---|---|---|
camel.dataformat.any23.base-u-r-i | The URI to use as base for building RDF entities if only relative paths are provided. | String | |
camel.dataformat.any23.configuration | Configurations for Apache Any23 as key-value pairs in order to customize the extraction process. The list of supported parameters can be found here. If not provided, a default configuration is used. | List | |
camel.dataformat.any23.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.any23.enabled | Whether to enable auto configuration of the any23 data format. This is enabled by default. | Boolean | |
camel.dataformat.any23.extractors | List of Any23 extractors to be used in the unmarshal operation. A list of the available extractors can be found here here. If not provided, all the available extractors are used. | List | |
camel.dataformat.any23.output-format | What RDF syntax to unmarshal as, can be: NTRIPLES, TURTLE, NQUADS, RDFXML, JSONLD, RDFJSON, RDF4JMODEL. It is by default: RDF4JMODEL. | Any23OutputFormat |