<mvc:interceptors>
<mvc:interceptor>
<mvc:mapping path="/**"/>
<bean class="com.xx.LoginInterceptor">
<property name="notInterceptPathList">
<list>
<value>/api/account/signin</value>
<value>/api/config/</value>
</list>
</property>
</bean>
</mvc:interceptor>
</mvc:interceptors>
spring mvc 登录和非登陆资源控制配置
