开发者

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

开发者 https://www.devze.com 2023-03-20 18:47 出处:网络
Every example i can find has the tag handler java class generating html and spewing it out with out.pr开发者_开发知识库int(someHTML);

Every example i can find has the tag handler java class generating html and spewing it out with out.pr开发者_开发知识库int(someHTML);

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


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.


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消