为不同的“文件夹”配置不同的身份验证方法在一次 .war 中

发布于 2024-08-19 05:23:36 字数 350 浏览 6 评论 0原文

我想创建一个包含用于 Web GUI 的基于 Web 的 FORM 登录和基本身份验证(在本例中为 Web 服务接口)的单个 .war。

 /index.html (unsecured welcome page)
 +---/interactive (folder containing web pages using auth-method=FORM)
 +---/service (servlet mapping for web service using auth-method=BASIC)

我没有看到在web.xml 文件。看来登录配置不能出现在安全配置中,并且它只允许 .war 全局使用单个身份验证方法。

I would like to create a single .war that contains both a web based FORM login for a web GUI AND BASIC authentication (in this case, for a web service interface.)

 /index.html (unsecured welcome page)
 +---/interactive (folder containing web pages using auth-method=FORM)
 +---/service (servlet mapping for web service using auth-method=BASIC)

I don't see a way to configure such a setup in the web.xml file. It appears that login-config can not appear inside a security-config and that it only allows a single auth-method globally for the .war.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

不气馁 2024-08-26 05:23:36

解决方案是创建两个 .war 子模块并将它们打包在 .ear 文件中。

The solution was to create two .war submodules and package them in an .ear file.

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