file « Taglib « JSP-Servlet Q&A





1. Can you get the filename of the jsp file using a taglib in the taglib code    stackoverflow.com

Is it possible to get the filename of the jsp file that uses a taglib from the java code? I.e.

public int doStartTag() throws JspException 
{
 try
 {
  String xxx = pageContext.?
Where ...