我如何反映作为 EJB 3 中的注释
我尝试将 EJB2.1 projetk 迁移到 EJB3.1。我没有找到任何注释。我怎样才能反映这个标签。
ejb-jar.xml 部分如下所示:
<security-role-ref>
<role-name>admin</role-name>
<role-link>adm_role</role-link>
</security-role-ref>
I try migrate an EJB2.1 projetk into EJB3.1. I did not find any annotation for . How can i reflect this tag.
The ejb-jar.xml part looks like:
<security-role-ref>
<role-name>admin</role-name>
<role-link>adm_role</role-link>
</security-role-ref>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有单独的注释,将安全角色引用链接到安全角色只能在部署描述符中完成(如在 ejb.jar.xml 片段中)。 EJB 3.1 规范的第 17.3.3 章对此进行了详细解释,但没有提及通过注释来实现这一点。
There is no separate annotation, linking security role reference to security role can be done only in deployment descriptor (as in your ejb.jar.xml fragment). This is explained in details at chapter 17.3.3 in EJB 3.1 specification and there is no word about doing it via annotations.