3

我正在使用 Spring Social 连接到 Twitter。连接部分工作正常,但是当我尝试获取朋友列表时,出现以下错误:

Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean of type [org.springframework.social.twitter.api.Twitter] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {}

我的控制器类:

@Controller
@RequestMapping("/social")
public class SocialController {

    private final Twitter twitter;

    @Inject
    public SocialController(Twitter twitter) {
        this.twitter = twitter;
    }

    @RequestMapping(value="/twitter/friends", method=RequestMethod.GET)
public String friends(Model model) {
    model.addAttribute("profiles", twitter.friendOperations().getFriends());
    return "twitter/friends";
}
}

我的 XML 配置如下:(仅显示相关部分)

<!-- Spring Social -->
    <bean id="connectionFactoryLocator"
        class="org.springframework.social.connect.support.ConnectionFactoryRegistry">
        <property name="connectionFactories">
            <list>
                <bean
                    class="org.springframework.social.twitter.connect.TwitterConnectionFactory">
                    <constructor-arg value="${twitter.consumerKey}" />
                    <constructor-arg value="${twitter.consumerSecret}" />
                </bean>
                <bean
                    class="org.springframework.social.facebook.connect.FacebookConnectionFactory">
                    <constructor-arg value="${facebook.clientId}" />
                    <constructor-arg value="${facebook.clientSecret}" />
                </bean>
            </list>
        </property>
    </bean>

    <bean id="textEncryptor" class="org.springframework.security.crypto.encrypt.Encryptors"
        factory-method="noOpText" />

    <bean id="usersConnectionRepository"
        class="org.springframework.social.connect.jdbc.JdbcUsersConnectionRepository">
        <constructor-arg ref="jpaDataSource" />
        <constructor-arg ref="connectionFactoryLocator" />
        <constructor-arg ref="textEncryptor" />
    </bean>

    <bean id="connectionRepository" factory-method="createConnectionRepository"
        factory-bean="usersConnectionRepository" scope="request">
        <constructor-arg value="#{request.userPrincipal.name}" />
        <aop:scoped-proxy proxy-target-class="false" />
    </bean>

    <bean class="org.springframework.social.connect.web.ConnectController">
        <!-- relies on by-type autowiring for the constructor-args -->
        <property name="applicationUrl" value="${application.url}" />
    </bean>
    <!-- Spring Social -->

请指导。我会非常感谢。

编辑

我想我忘了添加

@Bean
    @Scope(value="request", proxyMode=ScopedProxyMode.INTERFACES)   
    public Twitter twitter() {
        Connection<Twitter> twitter = connectionRepository().findPrimaryConnection(Twitter.class);
        return twitter != null ? twitter.getApi() : new TwitterTemplate();
    }

到 XML 文件。任何想法如何在 XML 上下文中表示。我是基于注释的配置的新手,因此使用基于 xml 的配置。请帮忙。

编辑 2

我解决了一个解决方法。决定同时使用基于注释的配置和基于 XML 的配置。只需添加我为每个人所做的事情:

我添加了一个配置:

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

    @Bean
    @Scope(value="request", proxyMode=ScopedProxyMode.INTERFACES)   
    public Twitter twitter(ConnectionRepository connectionRepository) {
        Connection<Twitter> twitter = connectionRepository.findPrimaryConnection(Twitter.class);
        return twitter != null ? twitter.getApi() : new TwitterTemplate();
    }
}

然后将其包含在我的基于 XML 的配置中

<bean class="com.joinups.config.SocialApiConfig" />

感谢大家指导我得到正确答案!非常感谢。你们真棒!

4

4 回答 4

3

看来您没有声明 type 的 bean Twitter

spring 文档中,我可以看到您需要以Twitter某种方式实例化。

尝试使用实例化对象<bean id="twitter" factory-bean="twitterConnectionFactory" />所需的正确参数声明一个 beanTwitterTemplate

编辑:

这是通过xml的配置:

<bean id="twitter" factory-method="findPrimaryConnection"
    factory-bean="connectionRepository" scope="request" depends-on="connectionRepository">
    <constructor-arg value="org.springframework.social.twitter.api.Twitter" />
</bean>

看到这个 ohter - 可能的欺骗 - 问题

于 2012-10-26T15:30:48.440 回答
1

请在调试器中查看上下文中的 bean,并查看那里是否有派生自 org.springframework.social.twitter.api.Twitter 的类。我怀疑有。我没有使用 Twitter API,但我希望有一个 XML 配置元素来告诉 Spring 使用它,或者有一个 Twitter API jar 需要在你的类路径中的某个地方。

我希望这有帮助。

于 2012-10-26T15:24:47.473 回答
0

组件扫描发生在配置中的 bean 加载之前。在注入时,Twitter 不存在。您可以像 PH 所说的那样在 XML 中定义 Twitter bean。还可以尝试使用 @Autowired 而不是 @Inject 来向 Controller 提供依赖项。

于 2012-10-26T15:43:25.857 回答
0

您正在使用基于注释的声明,因为Twitter您可能需要在 spring 配置中添加类似这样的内容

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xmlns:context="http://www.springframework.org/schema/context"
     xsi:schemaLocation="http://www.springframework.org/schema/beans
         http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
         http://www.springframework.org/schema/context
         http://www.springframework.org/schema/context/spring-context-3.0.xsd">

   <context:annotation-config/>

</beans>

基于注解的容器配置

于 2012-10-26T15:44:50.020 回答