我有一个bean配置文件,必须为URL设置String
的属性。我想从属性文件中借用这些值。
<camel:to uri="<This is the String which i want from properties file>"/>
字符串应该像
example.com?from=${property1}&to=${property2}
property1
和property2
出现在属性文件中。
我尝试使用SpEL,我使用的是Spring 3.1但是我收到以下错误
invalid charecter at index 0
这是我试过的EL
<camel:to uri="#{example.com?from=${property1}&to=${property2}}"/>
任何人都可以帮我吗?