up vote 2 down vote favorite
2
share [g+] share [fb]

I am new to Spring MVC. But I had certain experience in working with Struts 1.x. I would like to know if it is a common practice to customize DispatcherServlet while working with Spring MVC, like people sometimes customize ActionServlet or RequestProcessor in Struts 1.x?

Or let's extend the question a little bit. Where are the entry points for a veteran Spring MVC programmer to customize the MVC framework?

Thank you.

link|improve this question
1  
Please can you clarify what you mean by customize - do you mean specialize (as I answered) or configure (as adatapost answered)? – Nick Holt Aug 20 '09 at 8:40
Actually I mean both, since I need all the information about extending it. Moreover, I agree with you point. Extending DispatcherServlet and be replaced by using Filter or Controller. However, this way, Spring MVC is not able to offer a standard plig-in interface for plug-in developers. In struts, some plug-ins are done by extending "RequestProcessor". – Winston Chen Aug 20 '09 at 8:51
I'm not really familiar with the Struts plug-in architecture but I would say the Spring MVC API is pretty bare-bones. It's a little misnamed imho, as it's only really the controller part of the MVC pattern leaving you to define your views and model as necessary (typically as JSPs and POJOs). – Nick Holt Aug 20 '09 at 9:56
Yeah, but it's serving almost(if not all) all the requirement quite alright. It's a nice framework. I like it pretty much. – Winston Chen Aug 20 '09 at 10:43
Oh yeah, Spring MVC is great - it's integrated nicely with Spring and does just enough to get the request to you, after which you can do just what you like with it. It's by far my preferred way of building web-apps, with web-standards XHTML/CSS and JQuery on the front end. – Nick Holt Aug 20 '09 at 11:09
feedback

6 Answers

up vote 2 down vote accepted

Definitely it is a good practice. Spring Framework - Web MVC framework

SUMMARY: You can customize Spring's DispatcherServlet by adding context parameters .... especially handy when you have a lot of common functionality in one controller.

link|improve this answer
1  
Thanks, it's helpful. – Winston Chen Aug 20 '09 at 8:52
feedback

DispatcherServlet, like most of the Spring API, is very much designed for extension. Indeed, if you find a part of it that's not ammenable to subclassing, file an issue on their JIRA and they'll likely fix it for you (I've done that on a number of occasions).

Having said that, the vast majority of functionality can be achieved via configuration of DispatcherServlet rather than extension of it.

link|improve this answer
You are right. I cannot even name a single thing that cannot be achieved by it's current implementation. Thank you for your advise. I will file a issue if I find the necessity. – Winston Chen Aug 21 '09 at 3:09
feedback

good discussion....

here's my requirement where I am thinking that extending the dispatcher servlet would be 'a' solution. -

  1. separate validation, conversion from controller (for several good reasons)
  2. make the controller just a delegator to service layer.
  3. build/populate the domain/request object fully 'before' it reaches the controller.

i found extending the dispatcher servlet one way.. pls suggest what u think

link|improve this answer
If you think it's a good way, go ahead and implement it. Even though I asked this question in the first place, I haven't found a case in which I must extend DispatcherServlet. – Winston Chen Nov 4 '10 at 6:37
feedback

Why would you want specialize org.springframework.web.servlet.DispatcherServlet?

Any request pre-processing can/should be achieved with a javax.servlet.Filter and the rest is down to the implementation of org.springframework.web.servlet.mvc.Controller.

Alternatively see adatapost's answer, which refers to configuration of the org.springframework.web.servlet.DispatcherServlet via the web.xml file.

link|improve this answer
I ask this question so that I can understand this framework better, and to see what this way can serve. :) – Winston Chen Aug 20 '09 at 8:41
feedback

I, for one, have never found a reason to extend DispatcherServlet.

link|improve this answer
This is good to know ;) – Winston Chen Aug 21 '09 at 2:59
feedback

Well let's say you want to automate your environment? If you have a system environment property set to dev and you want to fetch dev-main-servlet.xml files or if it is set to prod to fetch prod-main-servlet.xml files.

Can you configure DispatcherServlet in its current form to use different main-servlet.xml based on system property or would you have to extend it?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.