| java.lang.Object | |
| ↳ | org.springframework.context.expression.StandardBeanExpressionResolver |
Standard implementation of the
BeanExpressionResolver
interface, parsing and evaluating Spring EL using Spring's expression module.
| Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| String | DEFAULT_EXPRESSION_PREFIX | Default expression prefix: "#{" | |||||||||
| String | DEFAULT_EXPRESSION_SUFFIX | Default expression suffix: "}" | |||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Evaluate the given value as an expression, if applicable;
return the value as-is otherwise.
| |||||||||||
Specify the EL parser to use for expression parsing.
| |||||||||||
Set the prefix that an expression string starts with.
| |||||||||||
Set the suffix that an expression string ends with.
| |||||||||||
| Protected Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Template method for customizing the expression evaluation context.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
org.springframework.beans.factory.config.BeanExpressionResolver
| |||||||||||
Default expression prefix: "#{"
Default expression suffix: "}"
Evaluate the given value as an expression, if applicable; return the value as-is otherwise.
| value | the value to check |
|---|---|
| evalContext | the evaluation context |
| BeansException |
|---|
Specify the EL parser to use for expression parsing.
Default is a SpelExpressionParser,
compatible with standard Unified EL style expression syntax.
Set the prefix that an expression string starts with. The default is "#{".
Set the suffix that an expression string ends with. The default is "}".
Template method for customizing the expression evaluation context.
The default implementation is empty.