Also: SpringBeans
public interface

BeanExpressionResolver

org.springframework.beans.factory.config.BeanExpressionResolver
Known Indirect Subclasses

Class Overview

Strategy interface for resolving a value through evaluating it as an expression, if applicable.

A raw BeanFactory does not contain a default implementation of this strategy. However, ApplicationContext implementations will provide expression support out of the box.

Summary

Public Methods
abstract Object evaluate(String value, BeanExpressionContext evalContext)
Evaluate the given value as an expression, if applicable; return the value as-is otherwise.

Public Methods

public abstract Object evaluate (String value, BeanExpressionContext evalContext)

Also: SpringBeans

Evaluate the given value as an expression, if applicable; return the value as-is otherwise.

Parameters
value the value to check
evalContext the evaluation context
Returns
  • the resolved value (potentially the given value as-is)
Throws
BeansException if evaluation failed