java - 如何使用自定义登录页面纠正 Spring Security 异常?

标签 java spring jsp spring-mvc spring-security

我得到的解释

HTTP Status 403 - Invalid CSRF Token 'null' was found on the request parameter '_csrf' or header 'X-CSRF-TOKEN'.

我正在尝试通过自定义登录页面实现 Spring Security

spring-security.xml

    <beans:beans xmlns="http://www.springframework.org/schema/security"
    xmlns:beans="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
    http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
    http://www.springframework.org/schema/security 
    http://www.springframework.org/schema/security/spring-security-4.0.xsd">

<!-- <http>
<intercept-url pattern ="/welcome*" access="hasRole('ROLE_USER')"/>
<http-basic/>
</http> -->

<!-- <http>
<intercept-url pattern ="/welcome*" access="hasRole('ROLE_USER')"/>
<form-login/>
<logout logout-success-url="/home"/>
</http> -->
<http>
<intercept-url pattern ="/welcome*" access="hasRole('ROLE_USER')"/>
<form-login login-page="/login" default-target-url="/welcome" authentication-failure-url="/loginfailed"/>
<logout logout-success-url="/logout"/>
</http>
<authentication-manager>
<authentication-provider>
<user-service>
<user name="rahul" password="123" authorities="ROLE_USER"/>
<user name="rohit" password="567" authorities="ROLE_USER"/>
</user-service>
</authentication-provider>
</authentication-manager>
</beans:beans>

登录.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Login Page</title>
<!-- <style>
.errorblock
{
color : #f0000;
background-color : #ffEEEE;
border : 3px solid #ff0000;
padding : 8px;
margin : 16px;
}
</style> -->
</head>
<body onload='document.f.j_username.focus();' bgcolor="blue">
<h3>Login with Username andPassword (Custom page)</h3>

<%-- <c:if test="$SPRING_SECURITY_LAST_EXCEPTION !=null"}">
<div class="errorblock">
Your login atempt are not sucessfull,try again
 <br/>Caused : ${sessionScope["SPRING_SECURITY_LAST_EXCEPTION"].message }
 </div>
 </c:if> --%>
<%-- <form name='f' action="<c:url value='j_spring_security_logout'/>" method="POST">
 --%>
 <form name='f' action='/SpringSecurityApplication/login' method="POST">
<table>
<tr>
<td>User :</td><td><input type='text' name='username'></td>
</tr>

<tr>
<td>Password :</td><td><input type='password' name='password'></td>
</tr>
<tr><td colspan ='2'><input name="submit" type="submit" value="submit" ></td></tr>
<tr><td colspan ='2'><input name="reset" type="reset" ></td></tr>
</table>
</form>
</body>
</html>

LoginController.java

package com.springtraining.security.controller;

import java.security.Principal;

import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

@Controller
public class LoginController {
    public LoginController() {
        System.out.println("LoginController constructor is called ");
    }

    @RequestMapping(value = "/welcome", method = RequestMethod.GET)
    public String printWelcome(ModelMap model, Principal principal) {
        System.out.println("**********Login Controller is Called********");

        String name = principal.getName();
        model.addAttribute("username", name);
        model.addAttribute("message", "Spring Security Custom Form Example");
        return "hello";
    }

    @RequestMapping(value = "/*", method = RequestMethod.GET)
    public String home(ModelMap model) {

        return "home";

    }

    @RequestMapping(value = "/login", method = RequestMethod.GET)
    public String login(ModelMap model) {
        return "login";
    }

    @RequestMapping(value = "/logout", method = RequestMethod.GET)
    public String logout(ModelMap model) {
        return "login";
    }

    @RequestMapping(value = "/loginfailed", method = RequestMethod.GET)
    public String loginError(ModelMap model) {
        model.addAttribute("error","true");
        return "login";
    }

}

hello.jsp

home.jsp 我认为不需要

最佳答案

您需要在登录(以及注销和其他所有操作)时提交 crsf token POST、PUT、DELETE 请求)。

有多种方法可以将其添加到您的 jsp 中:

  • 使用spring的jsp <form:form>标签(而不是标准表单标签)或
  • 您需要通过 spring security 标记 <sec:csrfInput /> 显式添加 crsf token 或:
  • 通过“标准jsp”:

“标准jsp”示例:

<input type="hidden"
  name="${_csrf.parameterName}"
  value="${_csrf.token}"/>

@see:Spring 安全引用章节 18.4.3 Include the CSRF Token

顺便说一句:我强烈建议阅读完整的 Chapter 18. Cross Site Request Forgery (CSRF)

关于java - 如何使用自定义登录页面纠正 Spring Security 异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39525603/

相关文章:

java - 从 jar 中公开特定的包

java - 如何在 Zuul 中使用 CORS 作为 API 网关 + AngularJS + 微服务

java - 在服务器端捕获生成的动态内容

java - 如何从servlet重定向到jsp页面

java - 使用 Play Framework 2.2 在类路径中包含 jar 的最简单方法?

java - 将 Jetty 作为 Servlet 容器嵌入

java - 创建将在 Eclipse 中编译前后运行的程序

java - spring hibernate mysql无法获取数据

java - 使用外键查找所有约束

自定义类加载器的 JSP 编译错误