vote up 2 vote down star
2

Hi,

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.

flag
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 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". – Wing C. Chen Aug 20 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 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. – Wing C. Chen Aug 20 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 at 11:09

4 Answers

vote up 1 vote down check

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|flag
1  
Thanks, it's helpful. – Wing C. Chen Aug 20 at 8:52
vote up 1 vote down

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|flag
I ask this question so that I can understand this framework better, and to see what this way can serve. :) – Wing C. Chen Aug 20 at 8:41
vote up 2 vote down

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|flag
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. – Wing C. Chen Aug 21 at 3:09
vote up 1 vote down

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

link|flag
This is good to know ;) – Wing C. Chen Aug 21 at 2:59

Your Answer

Get an OpenID
or

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