Unable to set connectionSignup with social:jdbc-connection-repository
Hello,
I'm trying to use Implicit sign up as defined on the manual at page:
http://static.springsource.org/sprin...ml/signin.html
but I'm unable to do it using the examples provided in the showcase where the jdbc connection repository is defined as:
<social:jdbc-connection-repository/>
I could define it not using the social namespace, this way:
<bean id="connectionRepository" class="org.springframework.social.connect.jdbc.Jdb cUsersConnectionRepository"
p:connectionSignUp-ref="signInAdapter">
<aop:scoped-proxy proxy-target-class="false"/>
<constructor-arg ref="dataSource"/>
<constructor-arg ref="connectionFactoryLocator"/>
<constructor-arg ref="textEncryptor"/>
</bean>
but in this case the configuration does not work any more because Spring tells me that the connectController is unable to find a bean of class org.springframework.social.connect.ConnectionRepos itory.
So I'm stuck if I don't want to use JavaConfig (and I don't want to).
Any help would be very, very appreciated!