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?
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?
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.