Class EvaluationListener
java.lang.Object
jakarta.el.EvaluationListener
Listener interface for monitoring EL expression evaluation events. Implementations can track when expressions are
evaluated and when properties are resolved during evaluation. Register an instance with an
ELContext using
ELContext.addEvaluationListener(EvaluationListener).- Since:
- EL 3.0
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidafterEvaluation(ELContext context, String expression) Fired after the evaluation of the expression.voidbeforeEvaluation(ELContext context, String expression) Fired before the evaluation of the expression.voidpropertyResolved(ELContext context, Object base, Object property) Fired after a property has been resolved.
-
Constructor Details
-
EvaluationListener
public EvaluationListener()Constructs an EvaluationListener.
-
-
Method Details
-
beforeEvaluation
-
afterEvaluation
-
propertyResolved
-