3

我使用弹簧安全登录。现在我正在尝试添加 spring social facebook login,但我得到了很多错误信息。

首先,当我尝试使用像spring social guide一样的方法时,我不能@Autowired private Facebook facebook

我找到了解决方案

@Bean
@Scope(value = "request", proxyMode = ScopedProxyMode.INTERFACES)
public Facebook facebook(ConnectionRepository repository) {
    Connection<Facebook> connection = repository
            .findPrimaryConnection(Facebook.class);
    return connection != null ? connection.getApi() : null;
}

接下来,我收到错误“找不到 bean”。我必须补充:

 @Bean
 public ConnectionRepository connectionRepository() {
 Authentication authentication = SecurityContextHolder.getContext()
 .getAuthentication();
 if (authentication == null) {
 throw new IllegalStateException(
 "Unable to get a ConnectionRepository: no user signed in");
 }
 return usersConnectionRepository().createConnectionRepository(
 authentication.getName());
 }

@Bean
public ConnectionFactoryLocator connectionFactoryLocator() {
    ConnectionFactoryRegistry registry = new ConnectionFactoryRegistry();

     registry.addConnectionFactory(new FacebookConnectionFactory(facebookid,
                facebookSecure));

    return registry;
}

@Bean
public AuthenticationNameUserIdSource authenticationNameUserIdSource(){
    return new  AuthenticationNameUserIdSource();
}


@Bean
public ConnectController connectController(
        ConnectionFactoryLocator connectionFactoryLocator,
        ConnectionRepository connectionRepository) {
    return new ConnectController(connectionFactoryLocator,
            connectionRepository);
}

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

在那之后,我还有其他问题java.lang.NoSuchMethodError: org.springframework.social.security.SocialAuthenticationFilter.getFilterProcessesUrl()Ljava/lang/String;

@Bean
  public SocialAuthenticationServiceLocator socialAuthenticationServiceLocator() {
    SocialAuthenticationServiceRegistry registry = new SocialAuthenticationServiceRegistry();
    registry.addConnectionFactory(new FacebookConnectionFactory(facebookid,
            facebookSecure));
    return registry;
}

     @Bean
 public SocialAuthenticationFilter socialAuthenticationFilter()
 throws Exception {
 SocialAuthenticationFilter filter = new SocialAuthenticationFilter(
 authenticationManager(), authenticationNameUserIdSource(),
 usersConnectionRepository(), socialAuthenticationServiceLocator());
 filter.setFilterProcessesUrl("/login");
 filter.setSignupUrl("/signup");
 filter.setConnectionAddedRedirectUrl("/home");
 filter.setPostLoginUrl("/home"); // always open account profile
 // page after login
 // filter.setRememberMeServices(rememberMeServices());
 return filter;
 }

但总是一样的。

这是我的http配置

        http.csrf()
            .disable()
            .authorizeRequests()
            .antMatchers("/home", "/css/**", "/**/*.css*", "/", "/signup",
                    "/facebook", "/signup.xhtml").permitAll().anyRequest()
               .authenticated().and().formLogin().loginPage("/login").loginProcessingUrl("/login/authenticate")
            .defaultSuccessUrl("/home").failureUrl("/login")

            .permitAll().and().logout().logoutUrl("/logout")
            .invalidateHttpSession(true).logoutSuccessUrl("/").and()
            .apply(new SpringSocialConfigurer());

和控制器

@RequestMapping(value = "/login", method = RequestMethod.GET)
 public String loginPage() {
 return "redirect:/login/authenticate/connect/facebook";

 }

我做了一个完整的教程。接下来,我删除SocialConfigurer了实现并创建了相同的(不是@Override,唯一的@Bean社交文档

'普通登录'(spring security)工作正常,但我无法使用spring security配置spring social。我使用JSF.XHTML文件。

也许有人知道我在哪里犯了错误?

谢谢你的帮助。

4

4 回答 4

1

看起来 Spring Security 在 Spring Security 4.0.0.RC1 中删除了 getFilterProcessesUrl() (无论如何它都被标记为已弃用)。

好像其他项目过滤器没有更新?

尝试回滚到 4.0.0.M2 或使用 3.2 火车。

于 2015-01-30T06:29:06.340 回答
1

请注意,spring security 4 将不接受 spring social 1.1.0。请将所有 Spring 社交依赖项(配置、核心、安全和 Web)升级到 1.1.2.RELEASE。你可以离开你的春季社交 Facebook 到 1.1.0

于 2015-05-26T10:44:30.130 回答
0

正如我的评论中所暗示的,您的某些库版本错误。我的聪明猜测是Spring Security的版本是错误的。据我所知,您应该使用 Spring Security 的3.2.x系列(例如 3.2.5)中的版本。

于 2015-01-23T22:27:23.533 回答
0

考虑使用 1.1.4 版。

这在 spring-social-security 1.1.4.RELEASE (或者之前的某个版本)中得到了解决。

https://github.com/spring-projects/spring-social

于 2015-11-25T02:40:35.810 回答