作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用Grails的大型Web应用程序上工作,我们正在尝试实现角色安全性的使用。设置系统时,grails基本上是授予对CAS身份验证用户的完整角色访问权限,但是当我为每种 Controller 方法创建特定角色时,它只是完全忽略了角色并继续允许对身份验证用户的完全访问权限。
这是我在Config.groovy中所做的事情:
grails.plugins.springsecurity.securityConfigType = SecurityConfigType.InterceptUrlMap
grails.plugins.springsecurity.interceptUrlMap = [
"/controllerName/create": [ "hasRole( 'ROLE_CREATE' )" ],
"/controllerName/remove": [ "hasRole( 'ROLE_DELETE' )" ],
"/controllerName/listEntries": [ "hasRole( 'ROLE_VIEW' )" ],
"/controllerName/listAllEntries": [ "hasRole( 'ROLE_VIEW' )" ],
"/controllerName/getDefaultCategories": [ "hasRole( 'ROLE_VIEW' )" ]
]
最佳答案
URL必须为小写,启动时应发出警告。将“controllerName”更改为“controllername”,将“listAllEntries”更改为“listallentries”,依此类推。
关于grails - 被覆盖的interceptUrlMap?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13941363/
我正在使用Grails 3尝试非常简单的操作,并且遇到了困难。我有一个名为WorkOrder的 Controller 。我想继续为其生成脚手架,因此在这一点上我不感兴趣在其中添加用于访问控制的注释(有
在Grails Config.groovy中,我们定义了“interceptUrlMap”,例如: grails.plugin.springsecurity.interceptUrlMap = [ '
当我调用testcontroller的任何操作时,它将重定向到登录页面。我想当我转到主页(index.gsp)时,它也重定向到登录页面。我试过了: grails.plugins.springsecur
我是一名优秀的程序员,十分优秀!