中断 Grails 动态方法
我有一个 grails 应用程序。其中我有一个名为 Book 的模型类。 从任何控制器,如果我调用 Book.list()、Book.get(id) 和其他一些休眠调用(如 save()),我想使用当前登录用户角色进行授权。 如果授权失败我必须抛出一些错误。 有没有可用的插件。 请给我一些想法或建议。
I have one grails application.In that I have one model class named Book.
From any controller if I am calling Book.list(), Book.get(id) and some other hibernate calls like save() I want to authorize using current login user role.
If authorization fails i have to throw some error.
Is there any plugin available for this.
Please give me some idea or suggestion.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看一下: http://www.grails.org/Controllers+-+Interceptors
take a look at: http://www.grails.org/Controllers+-+Interceptors
我们可以在域类中使用以下拦截器。使用它我们可以轻松处理
We can use the following interceptors in domain classes.Using this we can handle easily