I'm a little confused concerning when to use ${...}
compared to #{...}
. Spring's documentation only uses #{...}
, but there are plenty of examples that use ${...}
. Furthermore, when I started with SpEL I was told to use ${...}
and it works fine.
For those who are confused, an example of how I use it would be
@Component
public class ProxyConfiguration {
@Value("${proxy.host}")
private String host;
@Value("${proxy.port}")
private String port;
:
}
and some property file:
proxy.host=myproxy.host
proxy.port=8000
My questions are:
- what are the differences or is it the same?
- is one version deprecated so I should use the other one?
${...}
is the property placeholder syntax. It can only be used to dereference properties.#{...}
is SpEL syntax, which is far more capable and complex. It can also handle property placeholders, and a lot more besides.Both are valid, and neither is deprecated.
Try reading this article, which suggests
"If the hash is used, your code is recomputed every time that element is included in a partial refresh (i.e. each time it is rendered). If you use a dollar, your code is only computed when the page is initially loaded. But this has been extended beyond just EL, to SSJS too. After the hash or dollar, the curly braces denote the start and end of your language. This will be important when we come to combining languages later."
Expression Language Specification • Final Release - May 8, 2006
Page 2:
An eval-expression is formed by using the constructs ${expr} or #{expr}. Both constructs are parsed and evaluated in exactly the same way by the EL, even though they might carry different meanings in the technology that is using the EL.
${expr}
--> Immediate Evaluation#{expr}
--> Deferred EvaluationComplete reference here
There is no JSP EL, JSP uses SpEL. SpEL fits to technology that is using it.