GSP form:

<g:form controller="search" action="searchBooks" />

Search Controller:

def searchBooks = {
  // some action
  chain (
    uri: "/books/$categories/?phrase=$params.phrase",
    model: [book: bookList]
  )
} 

Where $categories are ie. "sf-story-novel".

UrlMappings:

"/books/$categories?/" {
  controller = "book"
  action = "list"
}

Book Controller:

def list = {
  // some action
}
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.