always-use-default-target =“false”和default-target-url不适用于spring-social

时间:2013-04-30 21:38:15

标签: spring spring-security spring-social

如果用户使用用户名和密码登录,则

always-use-default-target和always-use-default-target =“false”正常工作

使用spring-social

时,这两个属性似乎都被忽略了

当用户使用Facebook或Twitter登录时:

  • 如果用户因为点击“登录”按钮而进入登录页面,则在成功登录后,他/她将被重定向到“/”。我希望他/她被重定向到default-target-url
  • 如果用户被重定向到登录页面,因为他/她试图访问受保护的URL,他/她也会在成功登录后重定向到“/”。我希望他/她能被重定向到他/她要求的原始受保护网址。

我正在使用

  • spring 3.1.3.RELEASE
  • spring security 3.1.3.RELEASE
  • spring social 1.0.2.RELEASE


这是我的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.1.xsd">

    <http use-expressions="true" access-denied-page="/ingresar/?acceso_denegado=true">
        <intercept-url pattern="/" access="permitAll" />
        <intercept-url pattern="/signin/**" access="permitAll" />
        <intercept-url pattern="/url1/**" access="permitAll" />
        <intercept-url pattern="/url2/**" access="hasAnyRole('ROLE_XXX')"/>
        ...
        <intercept-url pattern="/**" access="denyAll" />
        <form-login login-page="/url3/" default-target-url="/url4" always-use-default-target="false" 
                    authentication-failure-url="/url5" login-processing-url="/url6"/>
        <logout logout-url="/logout"/>
    </http>    

    <beans:bean id="myUserService" class="my.kalos.service.MyUserServiceImpl"/>

    <beans:bean id="encoder" class="org.springframework.security.crypto.password.StandardPasswordEncoder"/>

    <authentication-manager alias="authenticationManager">
        <authentication-provider user-service-ref='myUserService'>
            <password-encoder ref="encoder"/>
        </authentication-provider>
    </authentication-manager>
</beans:beans>  

这是我的spring-social配置类

@Configuration  
public class MyAppSocialConfig {

    @Inject
    MyAppConnectionSignUp myAppConnectionSignUp;

    @Inject
    private DataSource dataSource;

    @Bean
    public ConnectionFactoryLocator connectionFactoryLocator() {
        ConnectionFactoryRegistry registry = new ConnectionFactoryRegistry();
        registry.addConnectionFactory(new FacebookConnectionFactory(myAppConf.getFbAppId(), myAppConf.getFbAppSecret()));
        registry.addConnectionFactory(new TwitterConnectionFactory(myAppConf.getTtConsumerKey(), myAppConf.getTtConsumerSecret()));
        return registry;
    }

    @Bean
    public UsersConnectionRepository usersConnectionRepository() {
        JdbcUsersConnectionRepository repository = new JdbcUsersConnectionRepository(dataSource,
                connectionFactoryLocator(), Encryptors.noOpText());
        repository.setConnectionSignUp(myAppConnectionSignUp);
        return repository;
    }

    @Bean
    @Scope(value="request", proxyMode=ScopedProxyMode.INTERFACES)
    public ConnectionRepository connectionRepository() {
        Authentication authentication = SecurityContextHolder.getContext().getAuthentication();
        MyUser user = (MyUser) authentication.getPrincipal();
      return usersConnectionRepository().createConnectionRepository(String.valueOf(user.getId()));
    }

    @Bean
    @Scope(value="request", proxyMode=ScopedProxyMode.INTERFACES)   
    public Facebook facebook() {
        return connectionRepository().getPrimaryConnection(Facebook.class).getApi();
    }

    @Bean
    @Scope(value="request", proxyMode=ScopedProxyMode.INTERFACES)   
    public Twitter twitter() {
        return connectionRepository().getPrimaryConnection(Twitter.class).getApi();
    }

    @Bean
    public ProviderSignInController providerSignInController() {
        ProviderSignInController controller = new MyAppProviderSignInController(...);
        controller.setSignInUrl("/someUrl/");
        return controller;
    }
}

1 个答案:

答案 0 :(得分:0)

我终于开始工作,但我使用的是XML配置。我们的想法是使用postLoginUrl属性覆盖默认URL(&#34; /&#34;)。

<http auto-config="true" use-expressions="true">
    <!-- Enable csrf protection -->
    <csrf />
    <form-login login-page="/sign" default-target-url="/dashboard" authentication-failure-url="/sign" username-parameter="username" password-parameter="password" />
    <!-- Dashboard is protected -->
    <intercept-url pattern="/dashboard**/**" access="hasRole('ROLE_USER')" />
    <!-- Adds social authentication filter to the Spring Security filter chain. -->
    <custom-filter ref="socialAuthenticationFilter" before="PRE_AUTH_FILTER" />
</http>


<!-- Configures the social authentication filter which integrates Spring Social with Spring Security -->
<beans:bean id="socialAuthenticationFilter" class="org.springframework.social.security.SocialAuthenticationFilter">
    <beans:constructor-arg index="0" ref="authenticationManager" />
    <beans:constructor-arg index="1" ref="userIdSource" />
    <beans:constructor-arg index="2" ref="usersConnectionRepository" />
    <beans:constructor-arg index="3" ref="connectionFactoryLocator" />
    <!-- Sets the url of the registration - use in case the sign in has failed -->
    <beans:property name="signupUrl" value="/user/register/" />
    <!-- Sets the url of the dashboard - use in case the sign in has succeed -->
    <beans:property name="postLoginUrl" value="/dashboard/" />
</beans:bean>