Class TemplateAwareExpressionParser
java.lang.Object
org.springframework.expression.common.TemplateAwareExpressionParser
- All Implemented Interfaces:
ExpressionParser
- Direct Known Subclasses:
SpelExpressionParser
Abstract base class for expression parsers that
support templates.
Can be subclassed by expression parsers that offer first class support for templating.
- Since:
- 3.0
- Author:
- Keith Donald, Juergen Hoeller, Andy Clement, Sam Brannen
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected abstract ExpressiondoParseExpression(String expressionString, @Nullable ParserContext context) Actually parse the expression string and return an Expression object.parseExpression(String expressionString) Parse the expression string and return anExpressionobject that can be used for repeated evaluation.parseExpression(String expressionString, @Nullable ParserContext context) Parse the expression string and return anExpressionobject that can be used for repeated evaluation.
-
Constructor Details
-
TemplateAwareExpressionParser
public TemplateAwareExpressionParser()
-
-
Method Details
-
parseExpression
-