From the monthly archives:

June 2008

Grails, favicon, and urls

June 1, 2008

I’ve just spent a little too much time trying to get my favicon working properly on a new grails application.
The issue I encountered was due to the fact that I wanted users to be able to access their accounts using ‘/[username]‘ - i.e. /paul
To accomodate this, I used a UrlMapping:

"/$id" {
controller='display'
action:'index'
}

Now, [...]

Read the full article →