Class StandardBeanExpressionResolver
java.lang.Object
org.springframework.context.expression.StandardBeanExpressionResolver
- All Implemented Interfaces:
- BeanExpressionResolver
Standard implementation of the
 
BeanExpressionResolver
 interface, parsing and evaluating Spring EL using Spring's expression module.
 All beans in the containing BeanFactory are made available as
 predefined variables with their common bean name, including standard context
 beans such as "environment", "systemProperties" and "systemEnvironment".
- Since:
- 3.0
- Author:
- Juergen Hoeller
- See Also:
- 
Field SummaryFields
- 
Constructor SummaryConstructorsConstructorDescriptionCreate a newStandardBeanExpressionResolverwith default settings.StandardBeanExpressionResolver(ClassLoader beanClassLoader) Create a newStandardBeanExpressionResolverwith the given bean class loader, using it as the basis for expression compilation.
- 
Method SummaryModifier and TypeMethodDescriptionprotected voidcustomizeEvaluationContext(StandardEvaluationContext evalContext) Template method for customizing the expression evaluation context.evaluate(String value, BeanExpressionContext beanExpressionContext) Evaluate the given value as an expression, if applicable; return the value as-is otherwise.voidsetExpressionParser(ExpressionParser expressionParser) Specify the EL parser to use for expression parsing.voidsetExpressionPrefix(String expressionPrefix) Set the prefix that an expression string starts with.voidsetExpressionSuffix(String expressionSuffix) Set the suffix that an expression string ends with.
- 
Field Details- 
DEFAULT_EXPRESSION_PREFIXDefault expression prefix: "#{".- See Also:
 
- 
DEFAULT_EXPRESSION_SUFFIXDefault expression suffix: "}".- See Also:
 
 
- 
- 
Constructor Details- 
StandardBeanExpressionResolverpublic StandardBeanExpressionResolver()Create a newStandardBeanExpressionResolverwith default settings.
- 
StandardBeanExpressionResolverCreate a newStandardBeanExpressionResolverwith the given bean class loader, using it as the basis for expression compilation.- Parameters:
- beanClassLoader- the factory's bean class loader
 
 
- 
- 
Method Details- 
setExpressionPrefixSet the prefix that an expression string starts with. The default is "#{".- See Also:
 
- 
setExpressionSuffixSet the suffix that an expression string ends with. The default is "}".- See Also:
 
- 
setExpressionParserSpecify the EL parser to use for expression parsing.Default is a SpelExpressionParser, compatible with standard Unified EL style expression syntax.
- 
evaluate@Nullable public Object evaluate(@Nullable String value, BeanExpressionContext beanExpressionContext) throws BeansException Description copied from interface:BeanExpressionResolverEvaluate the given value as an expression, if applicable; return the value as-is otherwise.- Specified by:
- evaluatein interface- BeanExpressionResolver
- Parameters:
- value- the value to evaluate as an expression
- beanExpressionContext- the bean expression context to use when evaluating the expression
- Returns:
- the resolved value (potentially the given value as-is)
- Throws:
- BeansException- if evaluation failed
 
- 
customizeEvaluationContextTemplate method for customizing the expression evaluation context.The default implementation is empty. 
 
-