使用 Grails 查找现有的 ShiroRoles 添加到新的 ShiroUser 中?
如何检索已创建并存储在数据库中的现有 ShiroRole?
我注意到您可以通过调用 ShiroUser.findByUserName("somename") 来检索现有的 ShiroUser,但我没有在 ShiroRole 中找到一个方法,该方法似乎可以在按名称查找角色时执行相同的操作。
我正在使用 Apache Shiro Grails 插件
谢谢!
How can I retrieve an existing ShiroRole that I've already created and stored in the database?
I've noticed that you can retrieve an existing ShiroUser by calling ShiroUser.findByUserName("somename") but I haven't found a method in ShiroRole that appears to do the same in finding the role by name.
I'm using the Apache Shiro Grails Plugin
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 Shiro Grails 插件及其默认安装的 ShiroRole,那么它实际上只是一个标准的 Grails 域类,因此您应该能够执行
ShiroRole.findByName('roleName')
操作。If you're using the Shiro Grails Plugin and the ShiroRole that it installs by default, it's really just a standard Grails domain class, so you should be able to do
ShiroRole.findByName('roleName')
.