我想在我的spring项目中使用两个处理程序拦截器。第一个对令牌进行身份验证的拦截器。第二个拦截器,用于在春季上下文中存储经过身份验证的令牌。我正在使用xml拦截器配置。如何指定处理程序拦截器的顺序。
<mvc:interceptors>
<mvc:interceptor>
<mvc:mapping path="/**" />
<bean class="com.megapath.interceptor.TokenValidatorInterceptor">
</bean>
</mvc:interceptor>
<mvc:interceptor>
<mvc:mapping path="/**" />
<bean class="com.megapath.interceptor.TokenStoreInterceptor">
</bean>
</mvc:interceptor>
</mvc:interceptors>