vote up 4 vote down star
3

Is Groovy a viable language or is it just a fad that will no longer be relevant in the future? I enjoy using it and I am thinking about using it instead of Java for some future apps but I am afraid that it will lose favor and/or stop being supported. I am interested to know what the rest of the community thinks about Groovy's future.

Does anyone know of any major products/Websites that are making use of Groovy?

Do you know of any Enterprise usage of Groovy?

flag
5  
Can there be a specific answer to this question? If not, can you make it wiki? – mmyers Aug 6 at 15:47
I edited the question to allow for a less subjective answer. I am attempting to read the community to see if Groovy is a viable option fro Enterprise use, or if I will have to rewrite these applications in a few years due to a lack of support. – Molex Aug 6 at 16:06
I see Scala as a competitor as well. Not that the languages are similar, but when people go looking around to find alternative JVM languages, they might pay attention to the recent "heat" Scala's been getting. – Nosredna Aug 6 at 17:14

closed as subjective and argumentative by gnovice, LFSR Consulting, Dinah, Matt Hinze, Shog9 Aug 6 at 19:15

6 Answers

vote up 0 vote down

I believe it does have a future.

In addition to writing applications in Groovy there is the domain of utility projects for which scripting languages are well suited. The Gradle project (gradle.org) is an example. Gradle is a replacement for Ant and Maven that is written in Groovy because it is ideal for a build system. (And heaven knows we need something better than Ant and Maven to build projects and manage dependencies with.)

There are also testing frameworks that use Groovy to create test scripts with (but I can't think of their names at the moment).

link|flag
vote up 1 vote down

I believe groovy has a future do to its active community. If it were a dying language I don't think there would be a Groovy magazeen As for whether you should use it that depends on several things.

  • Will everyone on the project be willing to learn Groovy if they don't already know it?
  • Do time constraints allow for any necessary learning curve for using Groovy instead of Java?
  • Could you reach a wider audience using a different language such as Python with out giving up features that make Groovy more viable?
  • Are there corporate standards that need to be followed?
  • Do you need to hook into existing Java code?

The main reasons I'm using Groovy and Grails for my current project are that it can easily call Java librarys which is a requirement for my application, and using Grails is less painful then using Spring and Hybernate directly.

link|flag
vote up 5 vote down

Your first question is "Is Groovy a viable language" and I think most would agree that it is. Your other question is will it continue to be supported in the future, and as Robert pointed out, it has an active community, so I don't think you will see support for it disappear anytime soon. You mentioned that you wanted to use it on several apps, what is the life of the applications. Are they something you expect to have a short life, that only you and a few others will use or a will they be released to a broader audience and be around for years to come. If it is the first then I would say, go for Groovy. It has solid support and is a powerful language.
If the project is larger, then that is a bigger question than simple post could answer.

Here is an interesting read that pertains to this topic, it is a Scala article written by James Strachan the creator of Groovy.

link|flag
2  
+1: A very apropos article. Strachan: "I can honestly say if someone had shown me the Programming in Scala book by by Martin Odersky, Lex Spoon & Bill Venners back in 2003 I'd probably have never created Groovy." – Jim Ferrans Aug 6 at 16:36
vote up 0 vote down

What's the ecological niche? What are the competitors? What drives any one of them to be adopted enough to be successful, or long-lived.

Would you see Python, PHP and Ruby as direct competetion? Is there room for four in the long-term? What else will come down the line.

My guess is that Groovy will be around for long enough for it to be usable for ad-hoc projects, especially for individual use.

For personal use, it's almost desirable to adopt something new periodically.

A further thought: I don't think "support" is as much in doubt as the thriving community that produces new good libraries and frameworks, that critical mass of active users which keeps technologies fresh. I would see Groovy as somewhat higher risk than its competetion.

How bad would it be if you backed the wrong horse?

link|flag
I do see Python, Ruby, and PHP as competition. Since Groovy has not been around as long, I am worried about it's future. If I am going to create a new application I would use Jython or JRuby instead of Groovy if I thought that there wouldn't be long term support. – Molex Aug 6 at 16:19
How long is long-term? – djna Aug 6 at 16:50
vote up -2 vote down

The main advantage of Groovy is that the code written in groovy can be changed in runtime and see the result instantly. The future of Groovy is based on the requirements.

link|flag
vote up 7 vote down

Well, I don't have a crystal ball, but their bug tracker is active, their 2GX conference is being held in October in New Orleans, the language has won several awards...What's not to like?

Have a look at the Groovy Related Projects page. It's a pretty impressive list.

link|flag

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