Package | Description |
---|---|
org.springframework.expression |
Core abstractions behind the Spring Expression Language.
|
org.springframework.expression.common |
Common utility classes behind the Spring Expression Language.
|
org.springframework.expression.spel.standard |
SpEL's standard parser implementation.
|
Modifier and Type | Field and Description |
---|---|
static ParserContext |
ParserContext.TEMPLATE_EXPRESSION
The default ParserContext implementation that enables template expression
parsing mode.
|
Modifier and Type | Method and Description |
---|---|
Expression |
ExpressionParser.parseExpression(String expressionString,
ParserContext context)
Parse the expression string and return an Expression object you can use for repeated evaluation.
|
Modifier and Type | Class and Description |
---|---|
class |
TemplateParserContext
Configurable
ParserContext implementation for template parsing. |
Modifier and Type | Method and Description |
---|---|
protected abstract Expression |
TemplateAwareExpressionParser.doParseExpression(String expressionString,
ParserContext context)
Actually parse the expression string and return an Expression object.
|
Expression |
TemplateAwareExpressionParser.parseExpression(String expressionString,
ParserContext context) |
Modifier and Type | Method and Description |
---|---|
protected SpelExpression |
SpelExpressionParser.doParseExpression(String expressionString,
ParserContext context) |