vote up 0 vote down star
2

Inspired by the question series "Hidden features of ..", I am curious to hear about your favorite Grails tips or lesser known but useful features you know of.

Rules:

  • One feature per answer
  • Give an example and short description of the feature, not just a link to documentation
  • Label the feature using bold title as the first line
flag
what I don't understand is why there are 3 grails? I guess it's just symbolic. – andersonbd1 Aug 25 at 19:51
1  
They give you immortality – maxpower47 Aug 25 at 19:52

3 Answers

vote up 4 vote down check

grails install-templates

Allows you to bring in the scaffolding templates into your project and then customize them. Very powerful if you have standard ways your screen should look.

I have also customized the scaffolding this way to provide hooks that I can access from inside my domain classes (i.e. add an extra button on the scaffolded page). This allows me to use default scaffolding for most of my views / controllers, with only customizations being isolated - keeps the amount of code to maintain to the absolutely essential.

link|flag
vote up 8 vote down

grails schema-export
When I want to create a quick and dirty database for a non grails app I create grails domain classes and export the schema instead of writing the SQL by hand.

link|flag
vote up 3 vote down

Strictly speaking it's not part of Grails, but the Grails Application Generator (GRAG) is a tool that can reverse engineer a Grails domain model from an existing schema. Very useful when using Grails with legacy databases, and also for those who are new to GORM but very experienced with relational modelling.

link|flag

Your Answer

Get an OpenID
or

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