I was looking at spring expression language and it seems very useful if you are using for configuration xml files. However, the reference docs provide lot of examples that use the following code below:
ExpressionParser parser = new SpelExpressionParser();
String name = parser.parseExpression
When and why would I be using this as I can do all of it using regular java. Am I missing some features or other uses where SpelExpressionParser could be handy? Are there other uses cases for spEL that I'm not aware of?