我如何反映作为 EJB 3 中的注释

发布于 2025-01-05 22:35:07 字数 277 浏览 1 评论 0原文

我尝试将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

两人的回忆 2025-01-12 22:35:07

没有单独的注释,将安全角色引用链接到安全角色只能在部署描述符中完成(如在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文