The Artima Developer Community
Sponsored Link

Weblogs Forum
What Can't Grails Do?

14 replies on 1 page. Most recent reply: Feb 10, 2009 8:13 PM by Yarko Tymciurak

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 14 replies on 1 page
Bruce Eckel

Posts: 875
Nickname: beckel
Registered: Jun, 2003

What Can't Grails Do? (View in Weblogs)
Posted: Jan 15, 2009 10:19 AM
Reply to this message Reply
Summary
I asked Guillaume Laforge this question at the JavaGruppen conference in Denmark while he was giving a compelling presentation on Grails.
Advertisement

Guillame gave an amazing demo where he built an enterprise app interactively. He described a feature as he wrote a line or two of meaningful code, and the feature magically appeared in the application. Watching this, I could imagine building an application live, with the stakeholders in the room making requests and giving feedback as the application is created. The only thing missing was the polish, which can be added later.

Although its name certainly derives from Ruby on Rails, Grails is primarily inspired by Rails' productivity rather than its design. In particular, Grails has gone out of its way to avoid some of the well-known scaling problems with Rails. Indeed, scaling was one of my prime considerations when I asked Guillame the above question.

His answer was that there is nothing that Grails can't do that (for example) EJBs can do. As far as scalability goes, Grails is built atop Hibernate and Spring and so contains all the scaling power of those frameworks.

The most impressive thing is the way that Grails pushes the dynamic nature of Groovy as hard as it can, so that every line of code is concise and meaningful. Contrast this to EJBs: an ivory-tower thought experiment that had little to do with how people actually develop software, and as a result was terribly confusing and required all kinds of needless ceremony. Many parts (entity beans, for example) simply didn't work. The losses that resulted from having EJBs foisted upon us has been estimated in the billions.

Does this make me a Groovy/Grails guy now? No, but only because Python is still my primary language of interest, so I would probably try TurboGears or Django first. However, I can easily imagine constraints where Grails is the right solution.

You can get a quick overview of Groovy and Grails by going through Guillame's slides from Devoxx 08.




Paul Barry

Posts: 1
Nickname: pjb3
Registered: Jan, 2009

Re: What Can't Grails Do? Posted: Jan 15, 2009 10:57 AM
Reply to this message Reply
> Grails has gone out of its way to avoid some of the well-known scaling problems with Rails

Can you elaborate on what these well-known scaling problems of Rails are, and how Grails avoids them?

Laurent Bois

Posts: 1
Nickname: lbois
Registered: Jan, 2009

Re: What Can't Grails Do? Posted: Jan 15, 2009 12:29 PM
Reply to this message Reply
I come for the Java / JEE world :
I work with Rails for 3 years, in parallel of Java. I began with Grails while learning Rails for comparison. I have more experience with Rails comparing to Grails.

My conclusion after several projects with Rails:
Rails is for me less enterprise ready than Grails: the enterprise Intranets are nowadays overloaded with J2EE stack, well integrated with third party enterprise products.
Grails has already the advantage for this: Grails has the advantage to be well integrated with Java, built on products like Hibernate+Spring, and Grails apps are natively deployable into J2EE app servers.
I do not speak from EJBs it was a nightmare for me.
My experience with deployment and performances with Rails :
I tried different mixes : Apache/FastCGI, Lighttpd/FastCGI, NGinx/Mongrel, Apache2/Mongrel.
I wasn't satisfied about performances, even for simple apps, comparing to J2EE apps running on App Servers like Oracle AS, JBoss, Glassfish.
Rails 2.2 + new comers like Thin or Phusion Passenger (mod_rails for Apache) certainly could enhance performances.
Many new things are coming with Rails 3 (principally some merge with the Merb framework)
Even Ruby 1.9 and its new YARV VM + future of Threading in the Ruby VM should be considered for performance enhancements.
Finally i would say, the chance Rails has to enter the enterprise is to make run Rails apps on JRuby and deploy into J2EE App Servers: finally Rails apps will really compete against Grails apps, and we'll can compare...

phil jones

Posts: 3
Nickname: nooranch
Registered: Oct, 2008

Re: What Can't Grails Do? Posted: Jan 15, 2009 6:45 PM
Reply to this message Reply
Bruce,

an interesting question. What, in your opinion, could Python frameworks like Django or TurboGears learn from Grails?

Dave Griffiths

Posts: 1
Nickname: dgriff
Registered: Jan, 2009

Re: What Can't Grails Do? Posted: Jan 16, 2009 1:51 AM
Reply to this message Reply
The losses that resulted from having EJBs foisted upon us has been estimated in the billions

I'm no fan of EJB but do you have a source for this claim? Nobody was forced to use EJB.

Roland Pibinger

Posts: 93
Nickname: rp123
Registered: Jan, 2006

EJB Posted: Jan 16, 2009 6:24 AM
Reply to this message Reply
> I'm no fan of EJB but do you have a source for this claim?
> Nobody was forced to use EJB.

I guess Bruce Eckel means EntityBeans.

James Watson

Posts: 2024
Nickname: watson
Registered: Sep, 2005

Re: What Can't Grails Do? Posted: Jan 16, 2009 6:54 AM
Reply to this message Reply
> The losses that resulted from having EJBs foisted upon
> us has been estimated in the billions

>
> I'm no fan of EJB but do you have a source for this claim?
> Nobody was forced to use EJB.

I was. Not physically but I generally try to avoid insubordination.

But I think Bruce means that EJB were sold as a panacea and a lot of people bought into it.

Ultimately, though, the fault is with those who failed to give the proper amount of skepticism to an unproven idea.

John Stoner

Posts: 5
Nickname: jstoner
Registered: May, 2003

Re: What Can't Grails Do? Posted: Jan 16, 2009 1:29 PM
Reply to this message Reply
I've never done EJBs--thankfully managed to avoid that--but I did get turned down by a lot of recruiters because of it. They seemed to think that because I hadn't done EJBs I hadn't done enterprise Java, when nothing could be further from the truth.

I've done a lot of Jython scripts to drive enterprise-ish Java--how does Groovy compare?

James Watson

Posts: 2024
Nickname: watson
Registered: Sep, 2005

Re: What Can't Grails Do? Posted: Jan 16, 2009 2:17 PM
Reply to this message Reply
> I've never done EJBs--thankfully managed to avoid
> that--but I did get turned down by a lot of recruiters
> because of it. They seemed to think that because I hadn't
> done EJBs I hadn't done enterprise Java, when nothing
> could be further from the truth.

It's funny too that I've known people who have plenty of experience working with EJBs but have almost no understanding of the fundamentals of Java or programming in general.

Behrang Saeedzadeh

Posts: 1
Nickname: behrangsa
Registered: Jan, 2009

Re: What Can't Grails Do? Posted: Jan 17, 2009 8:23 PM
Reply to this message Reply
Is the video of the Grails demo for the JavaGruppen available online?

Cheers,
Behrang

mike bayer

Posts: 22
Nickname: zzzeek
Registered: Jan, 2005

Re: What Can't Grails Do? Posted: Jan 18, 2009 12:54 PM
Reply to this message Reply
> Nobody was forced to use EJB.

seriously ? You never had to work for an "architect" or other manager who said, "we're using EJB for this, its enterprise ready" ? Lucky you. Try EJB 1.0 even, before anyone had even tried to use it, hibernate didn't even exist as an alternative. Boy that was fun.

Kondwani Mkandawire

Posts: 530
Nickname: spike
Registered: Aug, 2004

Re: What Can't Grails Do? Posted: Jan 21, 2009 2:22 AM
Reply to this message Reply
> I've never done EJBs--thankfully managed to avoid
> that--but I did get turned down by a lot of recruiters
> because of it. They seemed to think that because I hadn't
> done EJBs I hadn't done enterprise Java, when nothing
> could be further from the truth.
>
I'm a Contractor and I can relate. Persistence Frameworks, home grown stuff, Spring, but unfortunately that doesn't cut it.

When you actually list on your skills and accomplishments that you have written enterprise Java apps. They fire away questions about Entity Beans.

When you tell them that all your previous employers have opted for alternative solutions, these knit-witted code monkies look at you with this blank stare. I'm usually thinking to myself - and you call yourself Architect.

Really, WTF?

Xi Cheng

Posts: 1
Nickname: freeware
Registered: Feb, 2009

Re: What Can't Grails Do? Posted: Feb 6, 2009 11:53 AM
Reply to this message Reply
I'm not expert, I like the save/reload style development. But feel gails still in a very pre-mature stage:

1)there's no built-in support for master/detail forms, the demo is nice, but I can't see how easy if I need to display master/detail form in the same page.

2)documentation is still at very initial stage(i.e. most of them just tell you how to establish the first web application), developer need to figure out lots of details if want to do any thing more complicated.
3)huge number of plug-ins: good and bad. On one hand, you have plenty of choise, on the other hand, you need to learn/explore the plug-ins case by case. Often you will find plug-ins are not work as expected, or they won't communicate to grails as expected.
4)no struts2 plug-in (I did find a strut1 plug-in). given struts2 is still the de facto platform, why can't one use strut2 + grails in parallel?
5)compare to seams, grails is now founded by a small company, not sure how far it can go

Yung-Lin Ho

Posts: 1
Nickname: yunglin
Registered: Dec, 2007

Re: What Can't Grails Do? Posted: Feb 8, 2009 9:58 PM
Reply to this message Reply
Xi,

G2one who created grails were acquired by SpringSource last November. You don't have to worry about the future support of Grails.

Also, as Grameme has pointed out in his blog, Sky TV uses Grails and is capable to serve 1+ millions requests per day.

http://graemerocher.blogspot.com/2008/10/skycom-relaunches-written-in-grails.html

Yarko Tymciurak

Posts: 6
Nickname: yarko
Registered: Oct, 2008

Re: What Can't Grails Do? Posted: Feb 10, 2009 8:13 PM
Reply to this message Reply
We did quite a bit of "change while talking to the requester" using web2py -- it's running alongside django for PyCon2009, handling registration, financial aid, and more.

Yarko

Flat View: This topic has 14 replies on 1 page
Topic: The Fan Programming Language Previous Topic   Next Topic Topic: Scalability Is Not An Architectural Capability Anymore

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use