我正在使用taglib
我有以下java代码
int i=0;
public void doTag() throws JspException, IOException {
i= 1; //I do some process and get a value for i
super.doTag();
}
我已经定义了一个tld文件来访问jsp文件中的代码
我的疑问是如何在我的jsp文件中访问值i
我不想使用会打印i值的getJspContext().getOut().print(i)
。
感谢。