是“isUserInRole”吗?与JAAS相关的方法?
我已经在 glassfish 3.0 中配置了 JAAS 并使用 JDBCRealm 来验证用户身份。它工作正常并且 URL 受到限制。但方法 #{facesContext.externalContext.isUserInRole('admin')}
始终返回 false,即使登录用户是 admin。我已在数据库中为“组名称”设置“admin”,并且对于映射文件中的“角色名称”,用户是 admin。可能是什么问题?
I've configured JAAS in glassfish 3.0 and used JDBCRealm for authenticating users. It's working properly and URL(s) are restricted. But the method#{facesContext.externalContext.isUserInRole('admin')}
always returns false, even when the logged in user is admin.I've set "admin" for both "group name" in my database and for "role name" in the mapping file and the user is admin. What might be the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Servlet 容器中, isUserInRole 只是对 底层 servlet 方法。我会仔细检查部署中的角色映射描述符。
In a servlet container, isUserInRole is just a call to the underlying servlet method. I would double-check the role mappings in the deployment descriptor.