我的JSF应用程序会重定向未登录到登录页面的任何用户。当用户登录时,我希望应用程序重定向到用户最初在浏览器的地址栏中输入的页面。但是我不知道如何访问用户最初输入的URL,因为他被自动重定向到我在web.xml中配置的登录页面。
答案 0 :(得分:5)
容器管理的安全性没有任何API提供的功能。您最好的选择是将<login-config>
替换为Filter
类,大致相同:
HttpServletRequest httpreq = (HttpServletRequest) request;
HttpServletResponse httpres = (HttpServletResponse) response;
if (httpreq.getUserPrincipal() == null) {
httpreq.getSession().setAttribute("from", httpreq.getRequestURI());
httpres.sendRedirect("login.jsf");
} else {
chain.doFilter(request, response);
}
然后在你的登录信息中:
request.login(username, password);
externalContext.redirect((String) request.getSession().getAttribute("from"));