Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
需要拦截所有传入的请求以验证它们。如果调用控制器成功,则向调用 jsp 页面返回错误消息。
如何使用 Spring 3 实现此实现。
扩展HandlerInterceptorAdapter,您将拥有自己的拦截器。在这个扩展类中,覆盖方法postHandle。在此方法中,您将获得一个类型的对象ModelAndView作为参数,您可以根据需要更改目标视图。
HandlerInterceptorAdapter
postHandle
ModelAndView