vote up 2 vote down star
3

I'm new to the web programming world, and I'm trying to learn about various Java MVC frameworks available. Through my research, I came across Spring MVC and Grails.

My question is: which one is better for developing enterprise web applications, or is there another option I haven't run across yet?

Important considerations:

  • Must be supported by Eclipse
  • Must have tutorials available online
  • Must have a good support community
  • The GUI in my project must be java-based
flag

71% accept rate
Provide definition of what you mean by "better" and "enterprise web applications". Do you need LDAP and SSO? Do you have an existing data base feeding dozens of existing apps? – sal Jul 27 at 16:20
The project is being built from the ground up, so probably no interaction with existing apps, or an existing DB. I'll need secure authentication, if that's what you mean by LDAP and SSO. – bkritzer Jul 27 at 17:20

7 Answers

vote up 4 vote down check

There are many options you are missing like: Struts, JSF (Seam, MyFaces, IceFaces, Richfaces), Wicket, Stripes, GWT and many many MANY more...

I'd recommend you Spring MVC because as you are new into Web Development it would be easier to learn and (using your checklist):

  • It IS supported by Eclipse (check out SpringIDE)
  • The are tons of tutorials available online (I would start using the Spring MVC step by step)
  • It has great support of the community (better than Grails in my opinion)
  • Of course it's all Java
link|flag
easier to learn than Grails? I seriously doubt it. Spring requires lots of configuration, if you are a newbie to both you are going to spend at least a couple of hours just trying to configure Spring. – rodrigo.rivera Jul 28 at 21:49
Yes but in the configuration are involved XMLs and POJOs, to learn Grails you must learn Groovy and other 'strange' stuff – victor hugo Jul 30 at 23:48
please define "strange" stuff. Groovy is Java, there is no learning curve for a Java developer (I have never read a Groovy book and just know how to program Java, yet I am productive in Grails and have already 2 applications in production). – rodrigo.rivera Jul 31 at 23:20
vote up 0 vote down

Hi! I have to agree with Rodrigo. I was new to web programming and first tried spring MVC. I could not get the configuration right even for a very simple application.

I then tried grails, just a few days later I had already built up a fairly complex web application with no pain at all. And groovy is very simple for a Java person. Much simpler than to understand all XML files in Spring. Just avoid every software that exposes xml to the end user and you will be happy.

Grails = no XML = no pain.

link|flag
vote up 2 vote down

Hi,

6 Months ago I was in the same situation. I was new to both web development in the JVM and with no experience whatsoever with Grails or Spring. I first tried Spring with Intellij Idea, the problem was that I spend lots of hours just trying to get my environment configured, it was really complicated and finally I gave up.

Grails was so easy even if I had no experience with Groovy (it is almost the same as Java but with less overhead). When I started learning Grails there were few resources available (the best ones are The Definitive Guide to Grails Second Edition and Grails in Action) and the release was not as stable as it is now. However, it was easier to learn and required no configuration whatsoever.

Grails is Spring + Hibernate + Sitemesh and if you need a Java or Spring feature you can always add it.

Must be supported by Eclipse -> It is supported by Eclipse, but I prefer IntelliJ Idea or even Netbeans.

Must have tutorials available online -> The tutorial from the IBM Developer Networks are a great way to start. http://www.grailstutorials.com is also a great resource. However, if you are serious about learning Grails you should buy one of the books I mentioned above (The Definitive Guide to Grails Second Edition or Grails in Action).

Must have a good support community -> The Grails community is one of the most helpful community I have ever seen. Almost always Grails authorities such as Gramme Rocher answer directly your question and provide helpful insight (do not forget, that most users are new to Grails, so there are no dumb questions or the newbies are bullied by the pros like in other communities).

The GUI in my project must be java-based -> Grails has support for multiple views such as GWT, Flex, etc. Lets not forget that Groovy IS Java.

Grails is enteprise ready (just look at the list of projects using Grails and you will find known names such as Sky), because it is built on the shoulder of giants but helps you deal with the cumbersome configuration of Spring and Hibernate.

Try Grails, you will not regret and you will be writing production code in less than a couple of hours. (Another important plus about Grails, you do not need to compile and restart the server if you make minor changes to your code, when you reload your browser the changes are already there! Therefore, you get the same productivity feeling of technologies such as Ruby on Rails).

link|flag
vote up 5 vote down

I've recently made the switch from Spring development to Grails and I like Grails quite a bit. However, part of what makes Grails impressive is how quickly you can get stuff up and running, which is really fast as long as the plugins you need are available. We've struggled a bit where I work and my boss has questioned whether it was a good move to go to Grails and while there still is a bit of a learning curve and time commitment to build the plugins you'll need for your application (we had to port some things) I can say it's totally worth the effort. Development is much faster once you get all your groundwork stuff in place (which we're still working on).

The Eclipse support for Grails is still lacking though at this point, and I've switched back to Netbeans (if free is the concern) which seems to be doing a better job at keeping up with integrating tools.

Since Grails is built on Spring, you can wire in parts of Grails to your Spring app if you feel like it. I see a lot of blurring lines between Spring and Grails which makes it harder to say which one to go for without knowing background on a particular application.

In general, if you have no experience in either and your application is green field, I'd say pick Grails. If you have experience in Spring (but not Grails) and a legacy application, then you have to decide if you can afford the migration time, after which you will probably benefit from reduced development time, but might be tough to justify in the short term.

Community support is growing by the day and between Nabble and here, you should be able to get whatever help you need. There are a smattering of tutorials available as well and the documentation is pretty good. I'm confused on the GUI needing to be Java though, since I'm guessing the GUI will actually be HTML based (and not an applet).

link|flag
Sorry for the ambiguity, the specs on the project are a bit ambiguous as well. The GUI back-end must be java based, while the java code would generate the html web forms. – bkritzer Jul 27 at 17:12
On a side note, if resume skills are important (looking at future employment in the near term) it might be better to go with Spring since Grails is still probably considered leading edge and not mainstream. And from talking with my consulting contacts there are lots of Spring opportunities and not so many Grails yet. But I would definitely anticipate more and more companies switching to Grails as developers get exposed to it. – tgm Jul 27 at 18:05
@bkritzer: GUI backends? as in, the project has two user interfaces - a thick client GUI, and also a browser based GUI? If so, check out griffon griffon.codehaus.org - its a GUI framework that follows the philosophy of grails. – Chii Jul 28 at 12:47
vote up 0 vote down

Just a partial answer - but the Eclipse grails support is pretty horrific.

link|flag
2  
IntelliJ is pretty good. – duffymo Jul 27 at 21:41
NetBeans supports Grails as well although I haven't tried it out. – cdmckay Jul 28 at 22:41
vote up 0 vote down

We just moved to GWT just because having junior programmers developing front ends (combination of markup, styles and functionality) became such a major hustle lately. In GWT (gwt-ext) they have to stick to the toolkit and all the client stuff is generated for them. I know, I know - lots of "real" developers would scream bloody murder but in reality not having your developers to do "pixel perfect" and AJAX is simply priceless. Just as a site node for these who are willing to learn there is still ample opportunity in GWT to dork with HTML/CSS/JS

On a topic of Grails vs Spring MVC I vote the latter, just for a reason of most Java people being familiar with Spring framework in one way or the other

link|flag
vote up 7 vote down

Grails is built upon Spring MVC since it's the underlying framework. Take a look at the following article also for more information on whether Grails is enterprise ready.

http://www.ibm.com/developerworks/java/library/j-grails12168/index.html

In theory I'd say yes there's no reason why you couldn't build an enterprise application with Grails. I think it's a better approach to learn initially, then fall back to learning Spring MVC for the other bits that you need - it is the same framework underneath.

link|flag
1  
I have to disagree - learning a new framework in addition to learning a new language is NOT a better approach (grails) versus learning just the MVC framework of choice (SpringMVC). – Rich Kroll Jul 27 at 16:32
1  
Err what? MVC framework of choice? I have to disagree with your poorly formed response. My point was that learning Grails is a better approach because it teaches you good practices, and so what - it's Groovy - not exactly a fundamental departure. Still a better choice... – Jon Jul 27 at 17:04
1  
@rich kroll: groovy isnt fundamentally different to java - its simple syntax differences, and whats more, you can type in valid java in a groovy file and have it compile and run. Its completely interchangeable. The point of grails is that it teaches web app development from a higher level, and so i would also recommend learning it. – Chii Jul 28 at 10:27

Your Answer

Get an OpenID
or

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