gpt4 book ai didi

java - HttpServletRequest#login() 在 Java 中不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 08:55:07 25 4
gpt4 key购买 nike

j_security_check 似乎不足以让我执行登录过程。因此,我没有将表单提交给 j_security_check,而是创建了自己的 servlet,并以编程方式尝试进行登录。这有效,但我无法重定向到我的受限资源。谁能告诉我可能是什么问题吗?这是我的 servlet 的 processRequest 方法:-

protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");
PrintWriter out = response.getWriter();
try {
String strUsername = request.getParameter("txtusername");
String strPassword = request.getParameter("txtpassword");
if(strUsername == null || strPassword == null || strUsername.equals("") || strPassword.equals(""))
throw new Exception("Username and/or password missing.");
request.login(strUsername, strPassword);
System.out.println("Login succeeded!!");

if(request.isUserInRole(ROLES.ADMIN.getValue())){//enum
System.out.println("Found in Admin Role");
response.sendRedirect("/app/Admin/home.jsf");

}
else if (request.isUserInRole(ROLES.GENERAL.getValue()))
response.sendRedirect("/app/Common/index.jsf");
else //guard
throw new Exception("No role for user " + request.getRemoteUser());


}catch(Exception ex){
//patch work why there needs to be blogger here?
System.out.println("Invalid username and/or password!!");
response.sendRedirect("/app/Common/index.jsf");
}finally {
out.close();
}
}

一切正常,我什至可以看到消息“在管理员角色中找到”,但问题是即使在进行身份验证后,我也无法将我的请求重定向到其他页面。

最佳答案

我不确定,但我认为这个问题是

https://glassfish.dev.java.net/issues/show_bug.cgi?id=11340

关于java - HttpServletRequest#login() 在 Java 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2482872/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com