如果我理解正确:您正在寻找一种在运行时评估 EL 表达式的方法,该表达式存储在 EL 表达式提供的另一个值中 - 类似于递归 EL 评估。
由于我找不到任何现有的标签,我很快为这样的 EvalTag 整理了一个概念验证:
import javax.el.ELContext;
import javax.el.ValueExpression;
import javax.servlet.ServletContext;
import javax.servlet.jsp.*;
import javax.servlet.jsp.tagext.SimpleTagSupport;
public class SimpleEvalTag extends SimpleTagSupport {
private Object value;
@Override
public void doTag() throws JspException {
try {
ServletContext servletContext = ((PageContext)this.getJspContext()).getServletContext();
JspApplicationContext jspAppContext = JspFactory.getDefaultFactory().getJspApplicationContext(servletContext);
String expressionStr = String.valueOf(this.value);
ELContext elContext = this.getJspContext().getELContext();
ValueExpression valueExpression = jspAppContext.getExpressionFactory().createValueExpression(elContext, expressionStr, Object.class);
Object evaluatedValue = valueExpression.getValue(elContext);
JspWriter out = getJspContext().getOut();
out.print(evaluatedValue);
out.flush();
} catch (Exception ex) {
throw new JspException("Error in SimpleEvalTag tag", ex);
}
}
public void setValue(Object value) {
this.value = value;
}
}
相关顶级域名:
<?xml version="1.0" encoding="UTF-8"?>
<taglib version="2.1" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_1.xsd">
<tlib-version>1.0</tlib-version>
<short-name>custom</short-name>
<uri>/WEB-INF/tlds/custom</uri>
<tag>
<name>SimpleEval</name>
<tag-class>SimpleEvalTag</tag-class>
<body-content>empty</body-content>
<attribute>
<name>value</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
<type>java.lang.Object</type>
</attribute>
</tag>
</taglib>
用法:
<custom:SimpleEval value="${someELexpression}" />
笔记:
我已经使用 Tomcat 7.0.x / JSP 2.1 对其进行了测试,但是正如您在源代码中看到的那样,没有特殊的错误处理等,因为它只是一些概念验证。
在我的测试中,它适用于会话变量 using${sessionScope.attrName.prop1}
和请求参数 using ${param.urlPar1}
,但由于它使用当前 JSP 的表达式评估器,我想它也应该适用于所有其他“正常”EL 表达式。