0

动态内容(嵌套标签)中的嵌入自定义标签未呈现。

我有一个页面,它从 javabean 中提取动态内容并将对象列表传递给自定义标记以处理成 html。在每个对象中都有一堆要输出的 html,其中包含我希望也呈现的第二个自定义标签。问题是标签调用被呈现为纯文本。

一个例子可能对我有更好的帮助。

1 从数据库中提取信息并通过 javabean 返回到页面。将此信息发送到自定义标签以进行输出。

<jsp:useBean id="ImportantNoticeBean" scope="page" class="com.mysite.beans.ImportantNoticeProcessBean"/>  <%-- Declare the bean --%>
<c:forEach var="noticeBean" items="${ImportantNoticeBean.importantNotices}"> <%-- Get the info --%>
    <mysite:notice importantNotice="${noticeBean}"/> <%-- give it to the tag for processing --%>
</c:forEach>

这个标签应该像这样输出一个盒子 div

*SNIP* class for custom tag def and method setup etc
out.println("<div class=\"importantNotice\">");
out.println("   " + importantNotice.getMessage());
out.println("   <div class=\"importantnoticedates\">Posted: " + importantNotice.getDateFrom() + " End: " + importantNotice.getDateTo()</div>");
out.println("   <div class=\"noticeAuthor\">- " + importantNotice.getAuthor() + "</div>");
out.println("</div>");
*SNIP*

这渲染得很好,正如预期的那样

<div class="importantNotice">
    <p>This is a very important message. Everyone should pay attenton to it.</p>
    <div class="importantnoticedates">Posted: 2008-09-08 End: 2008-09-08</div>
    <div class="noticeAuthor">- The author</div>
</div>

2 例如,在上面的示例中,我要在 importantNotice.getMessage() 字符串中有一个自定义标签:

*SNIP* "This is a very important message. Everyone should pay attenton to it. <mysite:quote author="Some Guy">Quote this</mysite:quote>" *SNIP*

重要通知呈现正常,但引号标签不会被处理,而是简单地插入到字符串中并作为纯文本/html标签放置。

<div class="importantNotice">
    <p>This is a very important message. Everyone should pay attenton to it. <mysite:quote author="Some Guy">Quote this</mysite:quote></p>
    <div class="importantnoticedates">Posted: 2008-09-08 End: 2008-09-08</div>
    <div class="noticeAuthor">- The author</div>
</div>

而不是

<div class="importantNotice">
    <p>This is a very important message. Everyone should pay attenton to it. <div class="quote">Quote this <span class="authorofquote">Some Guy</span></div></p>    // or wahtever I choose as the output
    <div class="importantnoticedates">Posted: 2008-09-08 End: 2008-09-08</div>
    <div class="noticeAuthor">- The author</div>
</div>

我知道这与处理器和预处理器有关,但我不确定如何使其工作。

4

2 回答 2

1

只是使用

<bodycontent>JSP</bodycontent>

是不足够的。你应该做类似的事情

JspFragment body = getJspBody(); 
StringWriter stringWriter = new StringWriter(); 
StringBuffer buff = stringWriter.getBuffer(); 
buff.append("<h1>"); 
body.invoke(stringWriter); 
buff.append("</h1>"); 
out.println(stringWriter);

获取呈现的内部标签(例如 SimpleTag doTag 方法)。

但是,在问题的代码中,我看到内部标记来自一个未呈现为 JSP 一部分的字符串,而只是一些随机字符串。我认为您不能强制 JSP 翻译器对其进行解析。

您可以在您的情况下使用正则表达式,或者尝试重新设计您的代码,使其具有这样的 jsp:

<jsp:useBean id="ImportantNoticeBean" scope="page class="com.mysite.beans.ImportantNoticeProcessBean"/>
<c:forEach var="noticeBean" items="${ImportantNoticeBean.importantNotices}">
    <mysite:notice importantNotice="${noticeBean}">
        <mysite:quote author="Some Guy">Quote this</mysite:quote>
        <mysite:messagebody author="Some Guy" />
    </mysite:notice>
</c:forEach>

我应该使用正则表达式。

于 2008-09-08T10:12:37.353 回答
0

我倾向于更改“标记的体系结构”,因为您希望获得的数据不应该是类内部的标记,因为它是为页面设计的“标记”(尽管在默默无闻的情况下可以获取 JSP Servlet 引擎的评估程序线程)。

在标准过程中您可能会发现更好和更多的是使用具有 BodyTagSupport类扩展的“合作标签”并EVAL_BODY_BUFFERED在 doStartTag() 方法中返回以重复处理主体和/或对象共享,例如将检索到的数据存储在会话的应用程序层次结构中或在用户的会话上。

有关更多信息,请参阅oracle j2ee 自定义标签教程

于 2011-06-30T16:30:58.257 回答