我使用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上下文中表示它。我是基于Annotation的配置&amp;因此使用基于xml的。请帮忙。
我找到了解决方法。决定同时使用基于注释的配置和基于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" />
感谢大家指导我得到正确答案!非常感谢。你们摇滚!
答案 0 :(得分:2)
您似乎没有声明Twitter
类型的bean。
我可以看到你需要以某种方式实现Twitter
。
尝试使用实现<bean id="twitter" factory-bean="twitterConnectionFactory" />
对象所需的正确参数声明bean TwitterTemplate
这是通过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>
答案 1 :(得分:1)
请在调试器的上下文中查看bean,并查看是否有一个派生自org.springframework.social.twitter.api.Twitter的类。我怀疑有。我没有使用Twitter API,但我希望有一个XML配置元素告诉Spring使用它,或者有一个Twitter API jar需要在你的类路径上。
我希望这会有所帮助。
答案 2 :(得分:0)
组件扫描在加载配置中的bean之前发生。在注入时,Twitter不存在。你可以像在PH中所说的那样用XML定义Twitter bean。也可以尝试使用@Autowired而不是@Inject来为Controller提供依赖。
答案 3 :(得分:0)
您正在使用基于注释的Twitter
声明,您可能需要在spring config中添加类似的内容
<?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>