📅  最后修改于: 2022-03-11 15:01:05.140000             🧑  作者: Mango
class TestController {
def firstAction() {
redirect(action: "secondAction")
}
def secondAction() {
render "You were redirected from firstAction to secondAction"
}
}