vote up 5 vote down star
3

I need some information to understand design decision:

Is Struts a better choice than Spring MVC? I hear about Strus-Spring-Hibernae combo - Is struts used at MVC layer because its a matured framework than when compared to Spring MVC?

Any one used this combination for projects or aware of issues?

flag

45% accept rate

8 Answers

vote up 3 vote down

Go with Spring MVC (you're probably using Spring already) and JSTL to add data to the page.

My big complaint last time I used Struts (sometime ago and I think there was a re-write that may have addressed this) was you had to use 'form objects' for all your request parameters. This was fine when you had a simple form with known parameters but once you got into tables with varying amounts of data and checkboxes in each row you had to use something (if memory serves) called dyna-forms, which were a pain in the a*se...

Spring MVC on the other hand gives your controller objects the HTTP request and response directly giving you the power to name the parameters as meets your need.

link|flag
Form objects:stackoverflow.com/questions/353359/… – Cherian Nov 11 at 12:26
vote up 2 vote down

Form objects are so "Struts 1". Struts 2 appeared ages ago and made those obsolete. Struts 2 will bind request parameters directly to properties of the action. You can access the request and response directly, if need be. That's trivial.

link|flag
vote up 2 vote down

Spring MVC 2.5 or higher using Annotation-based controllers is the way to go.

From my experience people using the Spring-Struts combo are shops who already know Struts and don't want to invest the time into learning how Spring MVC works.

link|flag
vote up 1 vote down

Struts is definitely a mature framework, in fact it could be considered the grandaddy of the Java web framework family. Is it better than Spring MVC? I can't really say, as I don't have much experience with Struts. I do however have a lot of experience with Spring MVC and personally, I really like it, particularly since 2.5 when support for annotations was much improved.

If you're already using Spring on the back-end, the ease with which you can integrate Spring MVC is a big advantage. Maybe Struts has lots of awesome features that Spring MVC is missing, but both of them are request-based frameworks, so I'd imagine their similarities are probably greater than their differences. More specifically, I expect the difference between Spring and Struts is probably relatively minor when compared to the difference between Spring or Struts and a component-based framework, such as Tapestry or Wicket.

link|flag
vote up 1 vote down

For my money spring MVC is the way to go.

That said there isn't really again thing wrong with struts 2 (struts 1 is definitely a bit last century) I just go on the principle that you will no doubt already have spring configured in your app (who doesn't these days?) so why introduce another set of concepts and integration issues.

Spring MVC is wonderfully raw, at it's lowest level the Controller interface has just one method with HttpServletRequest and HttpServletResponse as it's parameters, and at it's best it's has complex bindings and validation. If you add webflow on top again you really do get a very complete stack.

link|flag
vote up 1 vote down

I have used both Struts 1.x with Spring and Spring MVC. Compared to Spring MVC Struts is clumsier and more rigid. I found Spring MVC quite nice to use, especially when dealing with changing customer requirements. For Spring MVC beginner SimpleFormController is a good starting point and its behavior can be modified easily.

link|flag
vote up 1 vote down

I have used both, and if you have the option, I'd recommend Spring MVC.

To give you a bit of background though, my current project is Struts 1.2.9 retrofitted for dependency injection, and integrated with Spring 2.5.6.

However, the only reason for this is because this project pre-dates Spring and we're unable to port everything to Spring right now, and would like to at least be able to use dependency injection in the back end. Our Struts action are being slowly obsoleted, and hopefully we'll have completely ridden ourself of any Struts in 6-8 weeks.

link|flag
vote up 0 vote down

I have used struts 1.x, struts 2.x and I'm starting with Spring MVC 2.5 I think the most flexible solution is Spring. I never found how to initialize an object at application startup with struts 2. With struts 1 I used plug-ins feature. But with spring you just define it in your beans and thats all.

link|flag

Your Answer

Get an OpenID
or

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