仅允许具有USER_ROLE权限的用户访问

时间:2014-06-20 13:46:10

标签: grails spring-security

我收到以下错误

Class
org.springframework.expression.spel.SpelEvaluationException
Message
EL1008E:(pos 0): Field or property 'ADMIN_ROLE' cannot be found on object of type 'org.springframework.security.web.access.expression.WebSecurityExpressionRoot'

我正在尝试访问My.GSP视图,我以USER_ROLE

的身份登录

-

import org.springframework.dao.DataIntegrityViolationException
import grails.plugin.springsecurity.annotation.Secured

class MyController {

    static allowedMethods = [save: "POST", update: "POST", delete: "POST"]

    @Secured(['ADMIN_ROLE','USER_ROLE'])
    def index() {
        redirect(action: "list", params: params)
    }
    @Secured(['USER_ROLE'])
    def list(Integer max) {
        params.max = Math.min(max ?: 10, 100)
        [patientInstanceList: Patient.list(params), patientInstanceTotal: Patient.count()]
    }
    @Secured(['USER_ROLE'])
    def create() {
        [patientInstance: new Patient(params)]
    }
    @Secured(['USER_ROLE'])
    def save() {
        def patientInstance = new Patient(params)
        if (!patientInstance.save(flush: true)) {
            render(view: "create", model: [patientInstance: patientInstance])
            return
        }

        flash.message = message(code: 'default.created.message', args: [message(code: 'patient.label', default: 'Patient'), patientInstance.id])
        redirect(action: "show", id: patientInstance.id)
    }

DB

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:6)

使用Grails中的spring安全插件的默认设置,必须以前缀"ROLE_"开头,因此请将ADMIN_ROLE重命名为ROLE_ADMIN和{ {1}}至USER_ROLE

This forum post解释了默认情况下它的工作原理,以及如何根据需要对其进行不同的配置。

相关问题