• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

Groovy Starting

 
Ranch Hand
Posts: 66
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

can anyone please help me to start groovy and its usage in real world applications. Please provide some startup URL's.

- Vikas.
SCJP 1.4.
 
clojure forum advocate
Posts: 3479
Mac Objective C Clojure
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Personally, I got:
Programming Groovy
Groovy Recipes
Both of "The Pragmatic Programmer"
 
Ranch Hand
Posts: 104
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The most popular use case for Groovy is probably web development, using the Grails framework. Also, it works very well as a "scripting" language, and a lot of people are using it to write JUnit tests for their Java code.

I would recommend checking out the "Groovy In Action" book if you would like a general overview of the language. Otherwise, Google is your friend.
 
pie sneak
Posts: 4727
Mac VI Editor Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Groovy can also be very useful in an SOA environment that passes XML messages between services. Groovy's XmlSlurper and MarkupBuilder classes make it so much incredibly easier to work with XML than plain Java!
 
Marc Peabody
pie sneak
Posts: 4727
Mac VI Editor Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You should download Groovy and give it a try. It doesn't take too long.

Groovy download page

Groovy Getting Started - this should have you up and running quickly

I highly recommend fiddling around with tutorial code using the GroovyConsole (getting started describes how to start running GroovyConsole).

GroovyConsole is like an extremely bare bones IDE that lets you test out code quickly. It's fun to use.
 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Some articles from IBM:

http://www.ibm.com/developerworks/views/java/libraryview.jsp?search_by=mastering+grails
http://www.ibm.com/developerworks/views/java/libraryview.jsp?search_by=practically+groovy:

Apress have published a couple of Grails / Groovy books which are good for beginners.
 
Rancher
Posts: 110
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The way I started programming Groovy was by writing tests using it. This is easy because you only have to add the Groovy jar to your project classpath, and you can just write a new test that extends GroovyTestCase. If you don't know how to write the code you want in Groovy, just write it in Java right there in the Groovy class.

Testing is Groovy is much easier than Java, because you can mock things so easily. See http://groovy.codehaus.org/Testing+Guide.
 
Seriously? That's what you're going with? I prefer this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic