春天社会融合

时间:2014-05-13 10:31:39

标签: java spring maven spring-mvc spring-social

我需要整合 Spring Social Facebook,Twitter和Google进行SignUp和登录

我添加了与Spring社交相关的所有dependency,即spring-social-config, spring-social-core, spring-social-web,spring-social-security也创建了bin:

@Bean
    public ConnectionFactoryLocator connectionFactoryLocator() {
        ConnectionFactoryRegistry registry = new ConnectionFactoryRegistry();
        registry.addConnectionFactory(new FacebookConnectionFactory(
            env.getProperty("facebook.clientId"),
            env.getProperty("facebook.clientSecret")));
        return registry;
    }

facebook.clientIdfacebook.clientSecret位于“属性”文件中。

我跟着Spring social facebook documentation,但我不明白如何从这开始。

请让我知道如何开始。

1 个答案:

答案 0 :(得分:3)

解决问题的最佳方法是创建属性文件。您正在寻找的文档是:http://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-external-config.html

如果您使用Spring启动,您只需将这些值放在/application.properties中:

facebook.clientId=clientId
facebook.clientSecret=secret

如果您不使用启动,或者您想指定其他属性文件:

@PropertySource("classpath:/app.properties")