Nowadays I hear a lot about "Groovy on Grails" and I want to know more about it:
- What is Groovy?
- What is Grails?
- What kind of applications are built using Groovy on Grails?
|
|
|||||||||||||
|
|
Grails is directly analogous to Ruby on Rails, but running with Groovy. What's Groovy ? It's a scripting language that runs on the Java Virtual Machine (JVM). So you can make use of Java libraries that you already have or are available (since they're compiled to bytecode and thus run on a JVM), plus the power of the JVM (for garbage collection, speed via JIT compilation etc.) and the conciseness of Groovy. The learning curve for a Java programmer to pick up Groovy is supposed to be pretty small (thus leveraging off the huge number of available Java programmers). It's a very different way of creating web apps to the standard Java mechanisms of servlet programming, JSPs, Java Server Faces etc. Grails (like Ruby on Rails) promises a more dynamic and iterative development environment than the standard development mechanisms (whether that's true in practise, I can't advise) |
||||
|
|
|
It would have certainly helped to Google all of this before asking. But anyway, Groovy is a dynamically typed language for the Java platform. It's a lot like Ruby, but with some Java-like features. Grails is basically a port of Ruby on Rails to Groovy. (Don't know if it's an exact port, but very similar for sure.) As for why you would use Grails: same reasons you would want to use Ruby on Rails, Django, Code Igniter, etc. Dynamically typed languages are much more expressive and easier to code with than statically typed languages. |
||||
|
|
|
Groovy is an object-oriented programming language for the Java platform. It is a dynamic language with features similar to those of Python, Ruby, Perl, and Smalltalk. It can be used as a scripting language for the Java Platform. Groovy has a Java-like syntax and works seamlessly with Java bytecode. Other features include:
Grails is an open source web application framework which uses the Groovy programming language. It is intended to be a high-productivity framework by following the "coding by convention" paradigm, providing a stand-alone development environment and hiding much of the configuration detail from the developer. Like Rails, Grails seems to be what I call "Strongly Grained". If you do things the Grails way, development is easy (and generally quite fast). The framework tends to have a preferred way of doing most things. On the other hand, if you need to go against the grain, you'll have a comparably rough time of it. And don't say Groovy on Grails(doesn't exist), for reasons refer to this blog. |
|||
|
|