我是 grails 的新手。我必须与会话一起工作。我看过会话文档。但不知道将代码放在我的控制器中的哪个位置。我有一个学生创建名称 createStudent 的页面。现在我希望这个页面只有在用户处于会话状态时才能访问。现在我该怎么做。我是否必须在登录时将用户设置为变量。谁能帮我解决这个问题?
def index() {
def user = session["user"]
if (user){
redirect(controller: 'admistratorAction', action: 'createUser')
}else{
redirect(controller: 'login', action: 'index')
}
}