How do i avoid generating html in a java custom tag handler?

此生再无相见时 提交于 2019-12-06 14:40:54

问题


Every example i can find has the tag handler java class generating html and spewing it out with out.print(someHTML);

Is there a way to include a jsp and add attributes to the request instead?


回答1:


I haven't tried this but it should be possible by obtaining a RequestDispatcher from the Request object:

public int doStartTag() throws JspException {
    try {
        pageContext.setAttribute("title", "My Title");
        pageContext.getRequest().getRequestDispatcher("/WEB-INF/includes/header.jspf").include(pageContext.getRequest(), pageContext.getResponse());
    }
    catch (IOException e) {

    }
    return EVAL_BODY_INCLUDE;
}

The PageContext also has an include method but that seems to only work for static files, not jsps.




回答2:


Try a JSP custom tag file; here's a simple example using an attribute.

Tag files have to live under WEB-INF/tags, so in WEB-INF/tags/makebold.tag:

<%@ attribute name="toBold" required="true" %>

<b>${toBold}</b>

In boldtest.jsp:

<%@ taglib prefix="my" tagdir="/WEB-INF/tags" %>

<my:makebold toBold="this will be bolded" />

I read up on tag files here and here.



来源:https://stackoverflow.com/questions/6693065/how-do-i-avoid-generating-html-in-a-java-custom-tag-handler

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!