WebLogic:无法获取 EJB3 中用户的角色
在我的 EJB 3 中,我尝试测试主体的角色,但它总是返回 false
。
在我的 WebLogic 11g 控制台中,我在“MyDomain”下定义 -> “安全领域”-> “我的王国”-> “用户和组”3个用户(user1、user2和user3)和2个组(role1和role2); role1 有 user1 & user3,role2有user2 &用户3。
我的 EJB 没有进一步定义安全性(没有 @RolesAllowed
等或 DD 中的条目)。
当我在 EJB 中使用 sessionContext.isCallerInRole(role);
测试角色是否存在时,它总是返回false
。如果我调用 sessionContext.getCallerPrincipal().getName();
我确实获得了正确的用户 ID。
我做错了什么?
In my EJB 3 I try to test for the roles of the principal but it always returns false
.
In my WebLogic 11g Console I defined under "MyDomain" -> "Security Realms" -> "myrealm" -> "Users and Groups" 3 users (user1 , user2 & user3) and 2 groups (role1 & role2); role1 has user1 & user3, role2 has user2 & user3.
My EJB has no further security defined (no @RolesAllowed
, etc. or entries in DDs).
When I test in my EJB for the presence of roles with sessionContext.isCallerInRole(role);
it always returns false
. If I call sessionContext.getCallerPrincipal().getName();
I do get the correct user ID.
What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否使用 @DeclareRoles 或 声明了您的角色?如果我正确地阅读了规范,第 17.2.5.3 节似乎要求您必须声明通过一种或另一种机制调用 isCallerInRole() 时使用的任何角色名称。
Have you declared your role using either @DeclareRoles or ? If I read the spec correctly section 17.2.5.3 seems to mandate that you have to declare any role names that you use when calling isCallerInRole() through one or the other mechanism.
如果注入了
sessionContext
,则在@Resource
注释中将身份验证类型指定为 Container 对我有用。例如:
If your
sessionContext
is injected, specifying the authentication Type as Container in the@Resource
annotation worked for me.E.g.: