[
https://issues.apache.org/jira/browse/CAMEL-8126?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14237680#comment-14237680
]
Daniel Pocock commented on CAMEL-8126:
--------------------------------------
I run the application by using the main class org.apache.camel.spring.Main
In camelContext.xml I have:
<camel:camelContext xmlns="http://camel.apache.org/schema/spring">
<!-- Load our routes defined in the Java DSL -->
<camel:package>org.example.myapp</camel:package>
</camel:camelContext>
and the RouteBuilder class is in package org.example.myapp
Is using org.apache.camel.spring.Main sufficient for property injection to work?
> PropertyInject does nothing for setter method
> ---------------------------------------------
>
> Key: CAMEL-8126
> URL: https://issues.apache.org/jira/browse/CAMEL-8126
> Project: Camel
> Issue Type: Bug
> Components: camel-core
> Affects Versions: 2.14.0
> Environment: Linux, JDK1.7, standalone Camel/Spring J2SE process
> running in Eclipse
> Reporter: Daniel Pocock
>
> Using the annotation @PropertyInject on a setter method of the RouteBuilder
> class doesn't appear to set the value.
> public class RouteBuilder extends SpringRouteBuilder {
> private String fooBar;
> @PropertyInject("foo.bar")
> private void setFooBar(String fooBar) {
> this.fooBar = fooBar;
> }
> @Override
> public void configure() throws Exception {
>
> logger.info("foo.bar = {}", fooBar);
> }
> ...
> }
> The log output says "fooBar = null"
> Using the {{ }} notation in endpoint URIs is working though.
>
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)