-
Notifications
You must be signed in to change notification settings - Fork 38.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@HandlerInterceptor [SPR-4770] #9447
Comments
Dave Syer commented Some comments:
|
Keith Donald commented An example of this was documented here: |
christophe blin commented Just to say my 2 cents on "How do you express the order of the interceptors" : I'd like the |
Rafael Naufal commented I think it's good to be able to use
|
Rossen Stoyanchev commented Rafael Naufal, note that the model is not available in preHandle. According to the HandlerAdapter contract, a ModelAndView is returned as a result of the invocation of the controller. This is pretty much reflected the method signatures of HandlerInterceptor. What it sounds like you could use is an |
Rossen Stoyanchev commented In contrast to controllers, HandlerInterceptor's are few and well suited to a simple interface-based contract. As mentioned in my last comment an |
David Pedowitz opened SPR-4770 and commented
Introduce
@HandlerInterceptor
to create a more symmetrical relationship between@Controller
,@ModelAttribute
and@RequestParam
.This came out of some questions and brainstorming in a Spring training session in LA, 5/1/08 with Chris Beams, Tchavdar Ivanov (FIM) and myself.
In Spring 2.5 the implementation of HandlerInterceptor has not changed leaving you to either implement the interface or extend HandlerInterceptorAdapter as before. If you use
@Controller
and component scan you still must define a DefaultAnnotationHandlerMapping to configure a single list of HandlerInterceptors for all Controllers.It'd be nice if you could define a class as a
@HandlerInterceptor
and annotate methods as@AfterCompletion
,@PreHandle
and@PostHandle
. The default behavior could automagically intercept all@Controllers
scanned and fire according to the same contract as the original HandlerInterceptor. Also interaction could be similar to@Controller
with the methods allowing use of@ModelAttribute
and@RequestParam
.Example provided by Chris Beams:
Obviously there's a lot to be worked out. Some questions we have are:
@Order
?@HandlerInterceptor
(above) or would something like@Controller
(interceptors=(@HandlerInterceptors
{class, class, ...})) be more expressive? which is more flexible?@Controller
(interceptor="authInterceptors")@Controller
relates to it@HandlerInterceptors
(add bonus for sure!)Issue Links:
14 votes, 16 watchers
The text was updated successfully, but these errors were encountered: