为不同的“文件夹”配置不同的身份验证方法在一次 .war 中
我想创建一个包含用于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方案是创建两个 .war 子模块并将它们打包在 .ear 文件中。
The solution was to create two .war submodules and package them in an .ear file.