我正在尝试为我的 JSP TagLib 类构建一个通用类
class MyTag extends CustomTag
{
public int doEndTag()
{
JspWriter out = pageContext.getOut(); <-- this one works fine
}
}
class CustomTag extends BodyTagSupport
{
public CustomTag()
{
JspWriter out = pageContext.getOut(); <-- this one throws me a Nullpointer
}
}
我究竟做错了什么?
我可以在父级中创建一个额外的方法,并从 doEndTag() 中的子级调用它,但使用构造函数会更好。