Fury

Since Camel 4.9

Fury is a Data Format that uses the Fury Library

Apache Fury is not supporting architecture using Big Endian (s390x for instance).

Fury Options

The Fury dataformat supports 4 options, which are listed below.

Name Default Java Type Description

unmarshalType (common)

String

Class of the java type to use when unmarshalling.

requireClassRegistration (advanced)

true

Boolean

Whether to require register classes.

threadSafe (advanced)

true

Boolean

Whether to use the threadsafe fury.

allowAutoWiredFury (advanced)

true

Boolean

Whether to auto-discover Fury from the registry.

Dependencies

To use Fury in your camel routes, you need to add the dependency on camel-fury which implements this data format.

If you use maven, you could add the following to your pom.xml, substituting the version number for the latest & greatest release.

<dependency>
  <groupId>org.apache.camel</groupId>
  <artifactId>camel-fury</artifactId>
  <version>x.x.x</version>
  <!-- use the same version as your Camel core version -->
</dependency>

Spring Boot Auto-Configuration

When using fury 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-fury-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.fury.allow-auto-wired-fury

Whether to auto-discover Fury from the registry.

true

Boolean

camel.dataformat.fury.enabled

Whether to enable auto configuration of the fury data format. This is enabled by default.

Boolean

camel.dataformat.fury.require-class-registration

Whether to require register classes.

true

Boolean

camel.dataformat.fury.thread-safe

Whether to use the threadsafe fury.

true

Boolean

camel.dataformat.fury.unmarshal-type

Class of the java type to use when unmarshalling.

String