gpt4 book ai didi

java - WebSphere Liberty 中 Jboss EJb3 注释 @SecurityDomain ("")和 WebSphere 注释 @Webcontext 的等效注释是什么

转载 作者:行者123 更新时间:2023-11-30 02:01:33 29 4
gpt4 key购买 nike

我已将 Jboss 应用程序迁移到 WebSphere Liberty。我必须删除所有 Jboss 引用库。在这样做的同时,我在某些注释中面临问题。 Jboss 应用程序使用 @SecurityDomain("Authentication") 和 @Webcontext 这两个注释在 WebSphere Liberty 中的等效注释是什么。

最佳答案

根据您的要求(如果省略,则会有一些默认值),您可能希望在 web.xml 中包含以下内容:

1) 安全约束,描述应用程序的资源并映射到角色,例如

<security-constraint>
<web-resource-collection>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>testing</role-name>
</auth-constraint>
</security-constraint>

2)安全角色定义(尽管它们也可以通过注释@DeclareRoles来完成)

<security-role>
<role-name>testing</role-name>
</security-role>

3) 登录配置,当需要表单登录时使用(如果省略则默认为Basic):

<login-config>
<auth-method>BASIC</auth-method>
</login-config>

然后在 Liberty 中配置用户注册表。如果需要,您可以使用基于文件的、LDAP 或自定义的。 server.xml 配置取决于所使用的注册表类型。最后,您需要将用户绑定(bind)到安全角色。它太宽泛,无法在此处包含所有选项,因此只需添加相关链接即可。 (如果需要,为更详细的问题创建单独的问题)。

有用的链接:

关于java - WebSphere Liberty 中 Jboss EJb3 注释 @SecurityDomain ("")和 WebSphere 注释 @Webcontext 的等效注释是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52697289/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com