The Spring Expression Language (SpEL) is a simple and powerful expression language
which helps to query and manipulate objects at runtime.
Expression templates allows us to define evaluation blocks.
Each evaluation block is delimited by prefix and suffix.
So we can mix literal text with one or more evaluation blocks.
The most preferred choice is #{ } which has been implemented by ParserContext.TEMPLATE_EXPRESSION.
However we can define our own prefix and suffix by implementing ParserContext interface.