I'm defining routes in a Spring file and I'm trying to construct routes with configurable endpoint names, only it doesn't seem to be working. I'll have something like
<from uri="jms:queue:${basename}.target"/>
But when I look at my ActiveMQ admin console, I see the camel context
connected to "${basename}.target". Why isn't the placeholder getting
replaced? I use the same ${basename} property elsewhere in the Spring
configuration without a problem.
