4

我们将 HTML 标记存储在 XML 文档中,并使用 JiBX 解组。我们还使用 Spring,当这些对象之一添加到模型中时,我们可以通过 EL 在 JSP 中访问它。

${model.bookshelf.columnList[0].linkList[0].htmlMarkup}

没有什么开创性的。但是如果我们想在 HTML 标记中存储 EL 表达式呢?例如,如果我们要存储以下链接怎么办?

<a href="/${localePath}/important">Locale-specific link</a>

...并将其显示在一个 JSP 中,其中 LocalePath 是一个请求属性。

或者更有趣的是,如果我们要存储以下内容怎么办?

The link ${link.href} is in column ${column.name}.

...并将其显示在嵌套的 JSP forEach 中...

<c:forEach var="column" items="${bookshelf.columnList}">
    <c:forEach var="link" items="${column.linkList}">
        ${link.htmlMarkup}
    </c:forEach>
</c:forEach>

请求属性中的这些 EL 表达式永远不会被评估。有没有办法让他们评估?类似“eval”标签的东西?令牌替换在第一个示例中有效,但在第二个示例中无效,并且不是很健壮。

4

2 回答 2

2

如果我理解正确:您正在寻找一种在运行时评估 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 表达式。

于 2013-01-12T22:30:03.007 回答
0

您不需要自己以编程方式解析 el 表达式,应通过<rtexprvalue>true</rtexprvalue>在 taglib 中包含评估结果来为您的标签提供评估结果,例如

   <tag>   
      <name>mytag</name>

      <attribute>
        <name>myattribute</name>
        <required>true</required>
        <rtexprvalue>true</rtexprvalue>
       </attribute>
   </tag>
于 2015-07-29T19:13:37.897 回答