我使用spring mvc拦截器来保证安全,但它也检查css和js但我想忽略检查css和js。
我在XML文件中以下面的方式拦截:
<mvc:interceptors>
<bean class="com.nfdil.loyalty.web.interceptor.SecurityManagerInterceptor" />
</mvc:interceptors>
如何忽略检查css和js?
答案 0 :(得分:2)
你试过这个吗?
<mvc:interceptor>
<mvc:mapping path="/**"/>
<mvc:exclude-mapping path="/static/**"/>
<bean class="com.nfdil.loyalty.web.interceptor.SecurityManagerInterceptor" />
</mvc:interceptor>
您可以找到更详细的文档here