Possible Duplicate:
Controller's life-cycle in Spring MVC
I have a general question about controllers in spring mvc.
I have a controller class (annotated with the @Controller). Each time a request is sent to my server the controller catches the request (of course according to the request mapping).
My question is this. Does spring instantiate a new controller per request or dose spring handle the controllers as a singletone?