i have to count accesses of a page, but when the count is odd i should not print the count and i have to do this from a custom tag. I can't call my field count from custom tag..
This is my code:
index jsp file
<%
Integer count = (Integer)application.getAttribute("numberOfVisits");
if (count == null || count == 0)
{
out.println("Welcome!");
count = 1;
}
else
{
out.println("Welcome back");
count++;
}
application.setAttribute("numberOfVisits", count);
%>
<%@ taglib uri="/WEB-INF/mytags.tld" prefix="c" %>
<c:counter></c:counter>
<%=count%>
custom tag class:
public int doEndTag() throws JspException{
try
{
int count = application.getAttribute("numberOfVisits") // wrong
if (count % 2 != 0) return EVAL_PAGE;
}
catch(Exception e)
{
e.printStackTrace();
}
return SKIP_PAGE;
}
}
Please find the below answer, which prints the odd value using a custom tag.
1) Create the Tag handler class To create the Tag Handler, we are inheriting the TagSupport class and overriding its method doStartTag().To write data for the jsp, we need to use the JspWriter class.
The PageContext class provides getOut() method that returns the instance of JspWriter class. TagSupport class provides instance of pageContext bydefault.
2) Create the TLD file Tag Library Descriptor (TLD) file contains information of tag and Tag Hander classes. It must be contained inside the WEB-INF directory.
File: mytags.tld
3) Create the JSP file Let's use the tag in our jsp file. Here, we are specifying the path of tld file directly. But it is recommended to use the uri name instead of full path of tld file. We will learn about uri later.
It uses taglib directive to use the tags defined in the tld file. From the jsp or from anywhere else in the project, set the "numberOfVisits". Eg: jsp file1:
This is the second jsp file: