Repository: camel Updated Branches: refs/heads/master a30e54e89 -> d35c64037
CAMEL-9723: Move spring-boot-starter-sample to examples so we can collapse the camel-spring-boot-starter module Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/d35c6403 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/d35c6403 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/d35c6403 Branch: refs/heads/master Commit: d35c6403795e7246d49bc07a40587984608c6c27 Parents: a30e54e Author: Claus Ibsen <[email protected]> Authored: Thu Mar 17 16:24:46 2016 +0100 Committer: Claus Ibsen <[email protected]> Committed: Thu Mar 17 16:24:46 2016 +0100 ---------------------------------------------------------------------- .../src/main/java/sample/camel/SampleBean.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/d35c6403/examples/camel-example-spring-boot-starter/src/main/java/sample/camel/SampleBean.java ---------------------------------------------------------------------- diff --git a/examples/camel-example-spring-boot-starter/src/main/java/sample/camel/SampleBean.java b/examples/camel-example-spring-boot-starter/src/main/java/sample/camel/SampleBean.java index ec7b3dd..b60ef69 100644 --- a/examples/camel-example-spring-boot-starter/src/main/java/sample/camel/SampleBean.java +++ b/examples/camel-example-spring-boot-starter/src/main/java/sample/camel/SampleBean.java @@ -28,7 +28,7 @@ import org.springframework.stereotype.Component; @Component("myBean") public class SampleBean { - @Value("greeting") + @Value("${greeting}") private String say; public String saySomething() {
