Spring post 后安全访问被拒绝 403

Spring Security Access denied 403 after post

其他人的几乎所有内容我都试过了post,与我的问题无关。

如果我尝试通过 GET(例如:path/users/edit/1)恢复我的 URL,一切正常,我会被重定向到用户编辑页面,但如果我尝试通过 POST,spring 安全拒绝我访问该页面。

这两种方法都映射到我的控制器中 class。

@RequestMapping(value="/users/edit/{id}", method={RequestMethod.POST,RequestMethod.GET})
public ModelAndView login(ModelAndView model, @PathVariable("id") int id ) {
    model.addObject("user", this.userService.getUserById(id));
    model.setViewName("/users/add"); //add.jsp
    return model;
}

我使用的表格post

<f:form method="post" action="/users/edit/${user.id}">
     <button type="submit">Edit</button>
</f:form>

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-3.0.xsd
http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security-3.2.xsd">

<!-- enable use-expressions -->
<http auto-config="true" use-expressions="true">
    <intercept-url pattern="/secure**" access="hasAnyRole('ROLE_USER','ROLE_ADMIN')" />
    <intercept-url pattern="/secure/users**" access="hasAnyRole('ROLE_USER','ROLE_ADMIN')" />

    <!-- access denied page -->
    <access-denied-handler error-page="/denied" />
    <form-login 
        login-page="/home" 
        default-target-url="/secure" 
        authentication-failure-url="/home?error" 
        username-parameter="inputEmail"
        password-parameter="inputPassword" />
    <logout logout-success-url="/home?logout"  />
    <!-- enable csrf protection -->
    <csrf/>
</http>

<!-- Select users and user_roles from database -->
<authentication-manager>
    <authentication-provider>
        <password-encoder hash="md5" /> 
        <jdbc-user-service data-source-ref="dataSource"
            users-by-username-query=
            "SELECT login, senha, ativo
               FROM usuarios 
              WHERE login = ?"
            authorities-by-username-query=
            "SELECT u.login, r.role
               FROM usuarios_roles r, usuarios u
              WHERE u.id = r.usuario_id
                AND u.login = ?" />
    </authentication-provider>
</authentication-manager>

我注意到您正在使用 csrf 保护,它默认保护任何修改资源的 HTTP 动词(例如 PUT、POST、DELETE 等)。如果您使用 Spring 的表单标签,csrf 令牌应该作为隐藏输入自动包含在您的表单中。您应该检查浏览器中的源代码以验证 csrf 令牌是否存在,否则您将需要这样的东西:

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

您可以在 Spring 参考资料中阅读有关 csrf protection/configuration 的更多信息。

您可以简单地使用 <sec:csrfInput/> 标签,如下所示:

    <f:form method="post" action="/users/edit/${user.id}">
        <button type="submit">Edit</button>
        <sec:csrfInput/>
    </f:form>

并且请确保导入 spring 安全标签

<%@ taglib uri="http://www.springframework.org/security/tags" prefix="sec" %>

我知道这是旧的 post 但我想 post 以防有人像我一样在搜索时遇到这个问题。

确保在扩展 WebSecurityConfigurerAdapter

的 class 上有正确的注释

@Configuration

@EnableWebSecurity

我错过了这些,花了几个小时解决了一个不存在的问题。