我是 grails 的新手。我最近在我的控制器中使用了会话。但只有一页。现在我想将会话用于多个页面。但我不知道该怎么做。这是我下面的代码,适用于一页。谁能帮我解决这个问题?
def index() {
def user = springSecurityService.currentUser
if (user){
redirect(controller: 'admistratorAction', action: 'createUser')
}else{
redirect(controller: 'login', action: 'index')
}
}