Redirect In Grails

[Solved] Redirect In Grails | Groovy - Code Explorer | yomemimo.com
Question : redirect in grails

Answered by : silly-sandpiper-8ny2trv4zjg8

class TestController { def firstAction() { redirect(action: "secondAction") } def secondAction() { render "You were redirected from firstAction to secondAction" }
}

Source : | Last Update : Fri, 19 Feb 21

Question : redirect in grails

Answered by : silly-sandpiper-8ny2trv4zjg8

def auth()
{ if (!params.username.empty) { redirect (controller: "manageLicences" , action:"checkLicense") }
}

Source : | Last Update : Fri, 19 Feb 21

Answers related to redirect in grails

Code Explorer Popular Question For Groovy