Repository: camel Updated Branches: refs/heads/master 9c969b510 -> 698fbd119
[Spring Boot] Refactoring. Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/698fbd11 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/698fbd11 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/698fbd11 Branch: refs/heads/master Commit: 698fbd1196b9d9f4804b14be375fbc2ae8807db3 Parents: 9c969b5 Author: Henryk Konsek <[email protected]> Authored: Mon Jan 5 19:16:41 2015 +0100 Committer: Henryk Konsek <[email protected]> Committed: Mon Jan 5 19:16:41 2015 +0100 ---------------------------------------------------------------------- .../camel/spring/boot/CamelConfigurationProperties.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/698fbd11/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java ---------------------------------------------------------------------- diff --git a/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java b/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java index 0882c32..51bb2b0 100644 --- a/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java +++ b/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java @@ -21,6 +21,8 @@ import org.springframework.boot.context.properties.ConfigurationProperties; @ConfigurationProperties(prefix = "camel.springboot") public class CamelConfigurationProperties { + // Properties + /** * Enable JMX support for the CamelContext. */ @@ -37,9 +39,11 @@ public class CamelConfigurationProperties { private int consumerTemplateCacheSize = 1000; /** - * + * Enables enhanced Camel/Spring type conversion. */ - private boolean typeConversion; + private boolean typeConversion = true; + + // Getters & setters public boolean isJmxEnabled() { return jmxEnabled;
