org.springframework.web.util
Class ExpressionEvaluationUtils

java.lang.Object
  extended byorg.springframework.web.util.ExpressionEvaluationUtils

public abstract class ExpressionEvaluationUtils
extends java.lang.Object

Convenience methods for easy access to the JSP Expression Language evaluator of Jakarta's JSTL implementation.

The evaluation methods check if the value contains "${" before invoking the EL evaluator, treating the value as "normal" expression (i.e. conventional String) else.

Note: The evaluation methods do not have a runtime dependency on Jakarta's JSTL implementation, as long as they don't receive actual EL expressions.

Since:
11.07.2003
Author:
Juergen Hoeller, Alef Arendsen

Constructor Summary
ExpressionEvaluationUtils()
           
 
Method Summary
static java.lang.Object evaluate(java.lang.String attrName, java.lang.String attrValue, java.lang.Class resultClass, javax.servlet.jsp.PageContext pageContext)
          Evaluate the given expression to an Object, be it EL or a conventional String.
static boolean evaluateBoolean(java.lang.String attrName, java.lang.String attrValue, javax.servlet.jsp.PageContext pageContext)
          Evaluate the given expression to a boolean, be it EL or a conventional String.
static int evaluateInteger(java.lang.String attrName, java.lang.String attrValue, javax.servlet.jsp.PageContext pageContext)
          Evaluate the given expression to an integer, be it EL or a conventional String.
static java.lang.String evaluateString(java.lang.String attrName, java.lang.String attrValue, javax.servlet.jsp.PageContext pageContext)
          Evaluate the given expression to a String, be it EL or a conventional String.
static boolean isExpressionLanguage(java.lang.String value)
          Check if the given expression value is an EL expression.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ExpressionEvaluationUtils

public ExpressionEvaluationUtils()
Method Detail

isExpressionLanguage

public static boolean isExpressionLanguage(java.lang.String value)
Check if the given expression value is an EL expression.

Parameters:
value - the expression to check
Returns:
true if the expression is an EL expression, false otherwise

evaluate

public static java.lang.Object evaluate(java.lang.String attrName,
                                        java.lang.String attrValue,
                                        java.lang.Class resultClass,
                                        javax.servlet.jsp.PageContext pageContext)
                                 throws javax.servlet.jsp.JspException
Evaluate the given expression to an Object, be it EL or a conventional String.

Parameters:
attrName - name of the attribute (typically a JSP tag attribute)
attrValue - value of the attribute
resultClass - class that the result should have (String, Integer, Boolean)
pageContext - current JSP PageContext
Returns:
the result of the evaluation
Throws:
javax.servlet.jsp.JspException - in case of parsing errors

evaluateString

public static java.lang.String evaluateString(java.lang.String attrName,
                                              java.lang.String attrValue,
                                              javax.servlet.jsp.PageContext pageContext)
                                       throws javax.servlet.jsp.JspException
Evaluate the given expression to a String, be it EL or a conventional String.

Parameters:
attrName - name of the attribute (typically a JSP tag attribute)
attrValue - value of the attribute
pageContext - current JSP PageContext
Returns:
the result of the evaluation
Throws:
javax.servlet.jsp.JspException - in case of parsing errors

evaluateInteger

public static int evaluateInteger(java.lang.String attrName,
                                  java.lang.String attrValue,
                                  javax.servlet.jsp.PageContext pageContext)
                           throws javax.servlet.jsp.JspException
Evaluate the given expression to an integer, be it EL or a conventional String.

Parameters:
attrName - name of the attribute (typically a JSP tag attribute)
attrValue - value of the attribute
pageContext - current JSP PageContext
Returns:
the result of the evaluation
Throws:
javax.servlet.jsp.JspException - in case of parsing errors

evaluateBoolean

public static boolean evaluateBoolean(java.lang.String attrName,
                                      java.lang.String attrValue,
                                      javax.servlet.jsp.PageContext pageContext)
                               throws javax.servlet.jsp.JspException
Evaluate the given expression to a boolean, be it EL or a conventional String.

Parameters:
attrName - name of the attribute (typically a JSP tag attribute)
attrValue - value of the attribute
pageContext - current JSP PageContext
Returns:
the result of the evaluation
Throws:
javax.servlet.jsp.JspException - in case of parsing errors


Copyright (C) 2003-2004 The Spring Framework Project.