How do I map a filter to a JSP? I want when I first call the JSP a filter be invoked first and then the request be sent to JSP. How do I do that ?
<filter>
<filter-name>Filter-1</filter-name>
<filter-class>Filters.Filter_1</filter-class>
</filter>
<filter-mapping>
<filter-name>Filter-1</filter-name>
<!-- map the filter to jsp . How do I do that ?-->
</filter-mapping>
Add URL pattern that uniquely identifies your specific JSP call