我有一个RESTful
Spring应用程序,它可以处理各种控制器和各种@RequestMapping
- s的各种请求。
现在我希望每个请求都包含用户/密码对,用户GET
参数?user=username
和密码POST
参数中的密码。
是否可以在所有请求进入控制器并检查凭据和可能的返回身份验证错误之前对其进行“预处理”?
这是一种机制,它是否是“过滤器”?
答案 0 :(得分:4)
有多种方法可以在请求进入控制器之前拦截这些请求。
- 使用Servlet过滤器:
醇>
@WebFilter(urlPatterns = "path-to-intercept", filterName = "your-filter-name")
public class MyRequestFilter implements Filter {
init(...);
doFilter(...);
destroy();
}
- 使用Spring HandlerIntecptors:
醇>
public class MyRequestInterceptor extends HandlerInterceptorAdapter{
preHandle(...); //called before the request lands to the controller.
postHandle(...); //called after the controller method finishes execution.
afterCompletion(...); //called before the response is sent.
}
在您的配置中:
<mvc:interceptors>
<mvc:interceptor>
<mvc:mapping path="/yourInterceptingPath/" />
<bean class="path-to-your-Interceptor.MyRequestInterceptor" />
</mvc:interceptor>
</mvc:interceptors>