Redirect in grails
class TestController {
def firstAction() {
redirect(action: "secondAction")
}
def secondAction() {
render "You were redirected from firstAction to secondAction"
}
}
Silly Sandpiper