我有一个 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}}"/>
谁能帮我这个?