CAMEL-9866 @PropertyInject doesn't work with Spring-Boot
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/7af24ce6 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/7af24ce6 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/7af24ce6 Branch: refs/heads/camel-2.16.x Commit: 7af24ce69dad62841e89b3b86206f3300dfea507 Parents: 3f2dcd4 Author: Tomas Rohovsky <tomasrohov...@seznam.cz> Authored: Wed Apr 13 22:34:35 2016 +0200 Committer: Claus Ibsen <davscl...@apache.org> Committed: Thu Apr 14 07:43:14 2016 +0200 ---------------------------------------------------------------------- .../java/org/apache/camel/spring/boot/CamelAutoConfiguration.java | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/7af24ce6/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelAutoConfiguration.java ---------------------------------------------------------------------- diff --git a/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelAutoConfiguration.java b/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelAutoConfiguration.java index fd04dd1..47624b2 100644 --- a/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelAutoConfiguration.java +++ b/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelAutoConfiguration.java @@ -109,7 +109,6 @@ public class CamelAutoConfiguration { } else { PropertiesComponent pc = new PropertiesComponent(); pc.setPropertiesParser(parser); - camelContext.addComponent("properties", pc); return pc; } }