JSP Custom Taglib:嵌套评估

时间:2010-02-24 15:08:12

标签: java jsp taglib

说我有自定义taglib:

<%@ taglib uri="http://foo.bar/mytaglib" prefix="mytaglib"%>
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>

<mytaglib:doSomething>
  Test
</mytaglib:doSomething>

在taglib类中,我需要处理一个模板并告诉JSP重新评估它的输出,例如,如果我有这个:

public class MyTaglib extends SimpleTagSupport {

  @Override public void doTag() throws JspException, IOException {
    getJspContext().getOut().println("<c:out value=\"My enclosed tag\"/>");
    getJspBody().invoke(null);
  }
}

我的输出是:

<c:out value="My enclosed tag"/>
Test

当我确实需要输出时:

My enclosed tag
Test

这可行吗?怎么样?

感谢。

3 个答案:

答案 0 :(得分:2)

Tiago,我不知道如何解决确切的问题,但您可以从文件中解释JSP代码。只需创建一个RequestDispatcher并包含JSP:

    public int doStartTag() throws JspException {
    ServletRequest request = pageContext.getRequest();
    ServletResponse response = pageContext.getResponse();

    RequestDispatcher disp = request.getRequestDispatcher("/test.jsp");
    try {
        disp.include(request, response);
    } catch (ServletException e) {
        throw new JspException(e);
    } catch (IOException e) {
        throw new JspException(e);
    }
    return super.doStartTag();
}

我在Liferay portlet中测试了这段代码,但我相信无论如何它应该适用于其他环境。如果没有,我想知道:)

HTH

答案 1 :(得分:1)

你真正需要的是:

<mytaglib:doSomething>
  <c:out value="My enclosed tag"/>
  Test
</mytaglib:doSomething>

并将您的doTag更改为此类

@Override public void doTag() throws JspException, IOException {
try {
   BodyContent bc = getBodyContent();
   String body = bc.getString();
   // do something to the body here.
   JspWriter out = bc.getEnclosingWriter();
   if(body != null) {
     out.print(buff.toString());
   }
 } catch(IOException ioe) {
   throw new JspException("Error: "+ioe.getMessage());
 }
}

确保在tld中将jsp body内容设置为jsp:

<bodycontent>JSP</bodycontent>

答案 2 :(得分:0)

为什么要在doTag方法中编写JSTL标记? println直接进入已编译的JSP(读取:servlet)当它在浏览器中呈现时,它将按原样打印,因为浏览器不能理解JSTL标记。

public class MyTaglib extends SimpleTagSupport {
      @Override public void doTag() throws JspException, IOException {
        getJspContext().getOut().println("My enclosed tag");
        getJspBody().invoke(null);
      }
    }

您可以选择将HTML标记添加到字符串中。