我们有一个使用基本 HTTP 身份验证的 Web 应用程序。
web.xml
...
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>file</realm-name>
</login-config>
...
在深层代码空间的某个地方间接使用......
User getLogedUser(HttpServletRequest request)
而且我必须在 JSF 2 中重写它,但我不知道如何在 JSF 2 中使用这种身份验证方法。(我找不到如何获得“HttpServletRequest 请求”的方法)
谷歌没有在他的首页上打出任何有用的信息
感谢您提前回答。