6

假设我有我的自定义标签库:

<%@ 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

这可行吗?如何?

谢谢。

4

3 回答 3

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 中测试了这段代码,但我相信它无论如何都应该在其他环境中工作。如果没有,我想知道:)

高温高压

于 2010-07-04T01:24:26.860 回答
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());
 }
}

确保 jsp 正文内容在 tld 中设置为 jsp:

<bodycontent>JSP</bodycontent>
于 2010-02-24T15:12:32.860 回答
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 标记添加到字符串。

于 2010-03-18T11:46:13.030 回答