I'm looking to develop a greenfield web application which will reuse a lot of Java components. To me, the obvious options for this are Grails or jRuby on Rails, but I'm having trouble finding objective comparisons of the two. Are there any clear reasons to pick one over the other with respect to:

  1. ease of integration with existing Java components (outside the persistent domain), e.g. JMS, EIP
  2. support for functional testing frameworks
  3. performance on a single machine
  4. scalability

I am not looking for answers relating to the availability of developers or activity of communities.


(I've checked Grails vs. Rails, and it's not relevant to me)

link|improve this question

53% accept rate
feedback

7 Answers

Try both, and pick the language and environment that suits you best. It's true that the Grails stack out of the box is more suited towards Java integration, but many components are just a few lines of Ruby code away from integration with Rails. Rails 3 is a great release that doesn't require you to use ActiveRecord, in fact it would be trivial to use Hibernate for your models instead. See also DataMapper, MongoMapper and a whole host of database adapters for SQL and NoSQL databases alike.

Also, JUnit != functional testing. Instead, have a look at Cucumber + Cucumber-Rails + Capybara + Selenium for an integrated browser automation testing experience. Take a look at https://github.com/elabs/front_end_testing for an example application that demonstrates this stack.

I'll suggest that Ruby is better suited as a web integration language, and JRuby hits the sweet spot of making integration with Java easy as well as pleasing while making a wealth of non-Java libraries available to you. Don't think that Groovy automatically wins because it's "closer" to Java. Sometimes you need to step into a refreshingly different environment in order to have a new look at how to solve a problem.

Disclosure: as a member of the JRuby team my bias is evident in my answer.

link|improve this answer
2  
Wow, 15 upvotes (until now)?! For what? - The questioner has specified four criteria that would make an answer a solution. - However, you're only responding to one of those (functional testing). - What about integrating Java enterprise technologies like JMS (that's been a requirement in the question)? Most likely, there's a loooong distance from JRuby to those. – robbbert Nov 17 '10 at 21:47
thanks for the (understandably biased ;) response. As @robbbert says though, this doesn't address all the points mentioned. Also, I'm aware that JUnit is not so much for functional testing; perhaps that should be a comment @ammoQ's answer? – Alison Nov 18 '10 at 3:51
feedback

I know Grails very well (right now I'm working on a Grails project), but not JRuby, so take this as a probably biased opinion: looking at the JRuby documentation, it looks that JRubys integration with Java is a bit more cumbersome, since Java is more native in Groovy than it is in Ruby; therefore, in JRuby, you have a lot of java-specific keywords and methods (e.g. java_import, java_send). Put simply, Groovy is a language targeted specifically at the Java world, while JRuby is, well, Ruby put on the JVM.

Grails has JUnit tests built in.

Can't say much about performance and scalability, but given the good integration with Java, one can always write performance-critical parts in Java when Groovy is too slow.

link|improve this answer
thanks, you've tackled the first point. Do you have much experience of this integration? A comparison of code snippets might be useful. As for JUnit, I think it's geared more towards unit testing than functional testing; please correct me if I'm wrong. If I understand correctly, rewriting code in Java for performance reasons is an option whether using Groovy or JRuby. Again; please correct me if I'm wrong. – Alison Nov 18 '10 at 10:46
Alison: Groovy integrates seamlessly with Java, a code snipplet of a Groovy method calling a method of a Java object looks just like Groovy calling Groovy or Java calling Java. About functional testing: you are right, but this link helps you: grails.org/Functional+Testing – ammoQ Nov 18 '10 at 11:07
Rewriting in Java is an option in JRuby also, sure, but the syntax of Groovy (which is relatively close to Java) and the seamless integration might make it a bit easier in Grails – ammoQ Nov 18 '10 at 11:09
feedback

In the end, you are going to make a decision on personal choice, comfort with the two languages and the availability of resources, but in the end, the fact that Grails is based on Spring led me to the conclusion that it was the right choice for me. I knew that if all else failed I could fall back to utilizing the tried and true Spring Framework

link|improve this answer
thanks. I was kinda hoping it would be possible to make an objective decision, but you might be right. – Alison Nov 18 '10 at 10:54
feedback
  • ease of integration with existing Java components:

it's easier with groovy, cause groovy is basically java. you do not have big context-switches

  • support for functional testing frameworks

ruby has it's own pile of testing frameworks like rspec/shoulda/cucumber/steak and tons more. since i like ruby syntax i would prefer those

  • performance on a single machine

as far as i know, grails is better in multithreading, because rails did not fokus too much on that in the past. they are currently catching up, so it might be tie.

  • scalability

both scale with the jvm environement. if you have a running infrastructure for java, grails is easier to integrate.

link|improve this answer
thanks for the answer. 1. Any feelings on how much easier integration is for Groovy than JRuby? 2. Good to hear about Ruby's options for testing; are these all compatible with JRuby? 3. I understand that JRuby's threading model is significantly different to standard Ruby's (e.g. it actually uses threads); have you taken this into account? 4. Scaling JRuby might be as simple as scaling Rails applications though - just using a Java application server instead of a Ruby one. Any thoughts? – Alison Nov 18 '10 at 10:52
feedback
  1. As phoet said, Grails has first-class Spring support, so it's typically very easy to integrate Spring libraries - that's what many plugins do, including the JMS plugin.

    Java code can either be provided in JARs or put in to the project's src/java directory. Groovy classes can reference Java classes which can reference Groovy classes. It's pretty seamless.

  2. Grails has support for HtmlUnit, Selenium-rc & WebDriver through various plugins. Geb has a lot of interest at the moment, especially when combined with Spock.

  3. Test them. I don't know if there are any recent comparisons, but performance typically depends heavily on your application. http://grails.org/ and http://beta.grails.org/ are both running on a single machine - and both are Grails applications.

  4. I gather it's pretty easy to cluster Grails via Terracotta. You can also do it with plain Tomcat if you want. There are options for distributed caching - SpringSource has its own (commercial) offering in the form of GemFire.

Hope that helps, and in the interests of full disclosure I'm a member of the Grails team.

link|improve this answer
feedback

Adding to the answers above, grails also has a plugin for JMS.

link|improve this answer
I think the answer maybe in checking out what Gems or Plugins each has that can help with the integrations. – Scott Warren Nov 22 '10 at 22:30
feedback

Curious, what did you end up choosing and why?

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.