I have a jsp page in which includes a jsp page through jsp:include. Now the question is does the request for the included jsp pass through the filter? following is my filter mapping in web.xml
<filter-mapping>
<filter-name>XYZFilter</filter-name>
<url-pattern>/*</url-pattern>
<dispatcher>INCLUDE</dispatcher>
<dispatcher>REQUEST</dispatcher>
</filter-mapping>
But this doesnt seem to work. The filter doesn't get called for the included jsp. What am I doing wrong or is it possible at all?