Search Results

5
votes

How do I get at the goodies in my Grails Config.groovy at runtime?

danb is on the right track. However, life gets a bit easier on your fingers if you do a nicer import: import org.codehaus.groovy.grails.commons.ConfigurationHolder as CH println CH …
1
vote

Grails 1.0.3 console reports ‘premature end of file’

Upgrading to a 1.0.4 snapshot is probably the best way to deal with this issue. Check out the instructions under "Grails Development Builds" at …
3
votes

Best practices for grails index page

The good answer: If you need to populate a model for the index page, it's time to change from using a straight index.gsp to an index controller. The evil answer: …
1
vote

Have a favorite custom Grails tag?

I have a "fmt:relDate" tag that gives you Twitter-like relative dates "3 days ago", "less than 30 seconds ago", etc., with the real time as a tooltip. The current implementation is basicall …
1
vote

How to work around a potential performance issue when using a Grails hasMany relation?

There is no order ensured by Hibernate/GORM in the default mapping. Therefore, it doesn't have to load elements from the database in order to do the sorting. You will have your hands on a bunch o …