Spring Security 4 @AuthenticationPrincipal为空,包含core.annotation.AuthenticationPrincipal但不是web.bind.annotation.AuthenticationPrincipal

时间:2016-03-25 04:14:37

标签: java spring spring-mvc spring-security annotations

我刚刚从Spring Security 3升级到4,控制器中的@AuthenticationPrincipal注释输入参数现在为空。我设法使用已弃用的org.springframework.security.web.bind.annotation.AuthenticationPrincipal解决了这个问题,但是当使用org.springframework.security.core.annotation包中的那个时,它是空的。

如果我这样做,它也会起作用:
    User activeUser = (User) ((Authentication) principal).getPrincipal();

我尽可能地遵循迁移指南。

这是我的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.0.xsd
    http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-4.0.xsd">

<!-- enable use-expressions -->
<http auto-config="false" use-expressions="true">
    <intercept-url pattern="/secure/admin**" access="hasAnyRole('ROLE_ADMIN', 'ROLE_SUPER_ADMIN')" />
    <intercept-url pattern="/secure/admin/**" access="hasAnyRole('ROLE_ADMIN', 'ROLE_SUPER_ADMIN')" />
    <intercept-url pattern="/secure/user**" access="isAuthenticated()" />
    <intercept-url pattern="/secure/user/**" access="isAuthenticated()" />
    <intercept-url pattern="/**" access="permitAll" />

    <form-login login-page="/login"
        authentication-success-handler-ref="redirectRoleStrategy"
        authentication-failure-url="/login?error"
        username-parameter="username"
        password-parameter="password"
        login-processing-url="/auth/login_check" />

    <logout logout-success-url="/login?logout" delete-cookies="JSESSIONID" />
    <csrf disabled="true" />
</http>

<beans:bean id='userDetailsService' class='com.myproject.security.UserDetailsServiceImpl' />

<beans:bean id="authenticationProvider" class="org.springframework.security.authentication.dao.DaoAuthenticationProvider">
    <beans:property name="userDetailsService" ref="userDetailsService"/>
</beans:bean>

<beans:bean id='authenticationManager' class='org.springframework.security.authentication.ProviderManager'>
    <beans:constructor-arg>
        <beans:list>
            <beans:ref bean='authenticationProvider' />
        </beans:list>
    </beans:constructor-arg>
</beans:bean>

<!-- Select users and user_roles from database -->
<authentication-manager>
    <authentication-provider user-service-ref='userDetailsService'>
        <password-encoder ref="encoder" />
    </authentication-provider>
</authentication-manager>

<beans:bean id="encoder" class="org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder">
    <beans:constructor-arg name="strength" value="10" />
</beans:bean>

<beans:bean id="redirectRoleStrategy" class="com.myproject.security.RoleBasedAuthenticationSuccessHandler">
    <beans:property name="roleUrlMap">
        <beans:map>
            <beans:entry key="ROLE_ADMIN" value="/secure/admin"/>
            <beans:entry key="ROLE_SUPER_ADMIN" value="/secure/admin"/>
        </beans:map>
    </beans:property>
</beans:bean>

1 个答案:

答案 0 :(得分:1)

我只是想通了。它确实是Spring Security deprecated @AuthenticationPrincipal的副本。不幸的是,从来没有找到那个帖子。

我改变了

<mvc:annotation-driven>
    <mvc:argument-resolvers>
        <bean class="org.springframework.security.web.bind.support.AuthenticationPrincipalArgumentResolver" />
    </mvc:argument-resolvers>
</mvc:annotation-driven>

<mvc:annotation-driven>
    <mvc:argument-resolvers>
        <bean class="org.springframework.security.web.method.annotation.AuthenticationPrincipalArgumentResolver" />
    </mvc:argument-resolvers>
</mvc:annotation-driven>

在我的applicationContext.xml中。