We have a web structure like following at an app root directory:
/css
/images
/js
/WEB-INF
/pdf_files
index.jsp

I specify an interceptor as:

<mvc:interceptors>
<mvc:interceptor>
<mvc:mapping path="/pdf_files" />
<bean class="xxx.interceptor.AccessCheckInterceptor">
</bean>
</mvc:interceptor>
</mvc:interceptors>

But interceptor was never called. How can we handle this case?

-Henry