我尝试编写有关自定义标签的演示代码,但是这个问题..我讨厌它,我可以自己解决它。
这是我的 .TLD 文件:
<tag>
<name>custom</name>
<tagclass>MyTag.CustomerTag</tagclass>
<bodycontent>empty</bodycontent>
</tag>
这是我的班级 CustomerTag:
public class CustomerTag extends TagSupport {
private PageContext _pageContext;
@Override
public int doStartTag() throws JspException {
try {
_pageContext.getOut().println("kakaka"); <-- **here cause exception**
} catch (IOException ex) {
JOptionPane.showMessageDialog(null, ex.getMessage());
} catch (Exception ex) {
JOptionPane.showMessageDialog(null, ex.getMessage());
}
return SKIP_BODY;
}
@Override
public int doEndTag() throws JspException {
return SKIP_PAGE;
}
}
这是我的 JSP 文件:
<%@taglib uri="/WEB-INF/Marko.tld" prefix="myTag" %>
<myTag:custom />
请帮助我,谢谢大家