when using restdsl in camel, I can see how to configure some feature :
    restConfiguration().component("jetty")
            .host("localhost")
            .port("8889")
            .bindingMode(RestBindingMode.json)
            .dataFormatProperty(....);
but cannot see how to configure modules specific to jackson. like for these:
    <dependency>
        <groupId>com.fasterxml.jackson.module</groupId>
        <artifactId>jackson-module-parameter-names</artifactId>
        <version>2.7.5</version>
    </dependency>
    <dependency>
        <groupId>com.fasterxml.jackson.datatype</groupId>
        <artifactId>jackson-datatype-jdk8</artifactId>
        <version>2.7.5</version>
    </dependency>
    <dependency>
        <groupId>com.fasterxml.jackson.datatype</groupId>
        <artifactId>jackson-datatype-jsr310</artifactId>
        <version>2.6.7</version>
    </dependency>
I need this to get java.time.LocalDate serialized correctly.
 
    