在Spring中使用String的属性占位符

时间:2013-07-05 09:45:57

标签: java spring spring-el

我有一个bean配置文件,必须为URL设置String的属性。我想从属性文件中借用这些值。

<camel:to uri="<This is the String which i want from properties file>"/>

字符串应该像

example.com?from=${property1}&to=${property2}

property1property2出现在属性文件中。

我尝试使用SpEL,我使用的是Spring 3.1但是我收到以下错误

invalid charecter at index 0

这是我试过的EL

<camel:to uri="#{example.com?from=${property1}&to=${property2}}"/>

任何人都可以帮我吗?

0 个答案:

没有答案