1

我正在使用 jboss 服务器。我想使用 web.xml 文件进行 BASIC 身份验证。我怎么做?

4

2 回答 2

2

如何为基本身份验证配置 JBoss的教程应该可以帮助您

于 2012-05-16T05:00:27.657 回答
2

步骤是

  1. 在 web.xml 中为安全页面添加安全约束
  2. 在 web.xml 中应用登录配置
  3. 在 jboss-web.xml 中应用安全域
  4. 为用户和角色创建属性文件

以下链接通过示例https://community.jboss.org/wiki/BASICAuthentication很好地解释了这一点

users.properties 文件使用以下格式:

username1=password1
username2=password2

roles.properties 文件使用以下格式:

username1=role1,role2,...
username1.RoleGroup1=role3,role4,...
username2=role1,role3,...

此链接提供有关用户和角色属性文件的更多详细信息。 https://community.jboss.org/wiki/UsersRolesLoginModule

于 2012-05-16T05:05:09.330 回答