Próbowałem Spring Social Showcase przy użyciu XML, ale wydaje się, że zawiera błąd w XML.SpringSocial XML Configuration Schema Error
Plik XML nie działa. Czytałem znaki X na linii 23 do 27.
<facebook:config app-id="${facebook.clientId}" app-secret="${facebook.clientSecret}" app-namespace="socialshowcase" />
<twitter:config app-id="${twitter.consumerKey}" app-secret="${twitter.consumerSecret}"/>
<linkedin:config app-id="${linkedin.consumerKey}" app-secret="${linkedin.consumerSecret}"/>
<social:jdbc-connection-repository/>
Próbowałem sprawdzić schemat (http://www.springframework.org/schema/social/) i wklejeniu go w adresie URL, ale mówi, że nie został znaleziony. Próbowałem sprawdzić root, który jest springframework.org/schema/ i nie mogłem znaleźć dziecka odnoszącego się do Spring Social.
Czy istnieje nowy link do lokalizacji xmnls lub schematu dla wiosennego społeczeństwa?
Tu jest mój XML File:
<?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:facebook="http://www.springframework.org/schema/social/facebook"
xmlns:twitter="http://www.springframework.org/schema/social/twitter"
xmlns:social="http://www.springframework.org/schema/social"
xmlns:linkedin="http://www.springframework.org/schema/social/linkedin"
xmlns:c="http://www.springframework.org/schema/c"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/social/facebook http://www.springframework.org/schema/social/spring-social-facebook.xsd
http://www.springframework.org/schema/social/linkedin http://www.springframework.org/schema/social/spring-social-linkedin.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/social/twitter http://www.springframework.org/schema/social/spring-social-twitter.xsd
http://www.springframework.org/schema/social http://www.springframework.org/schema/social/spring-social.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd">
<context:property-placeholder location="classpath:/org/springframework/social/showcase/config/application.properties" />
<facebook:config app-id="${facebook.clientId}" app-secret="${facebook.clientSecret}" app-namespace="socialshowcase" />
<twitter:config app-id="${twitter.consumerKey}" app-secret="${twitter.consumerSecret}"/>
<linkedin:config app-id="${linkedin.consumerKey}" app-secret="${linkedin.consumerSecret}"/>
<social:jdbc-connection-repository/>
<bean id="userIdSource" class="org.springframework.social.security.AuthenticationNameUserIdSource" />
<bean id="connectController" class="org.springframework.social.connect.web.ConnectController" autowire="constructor">
<property name="connectInterceptors">
<list>
<bean class="org.springframework.social.showcase.facebook.PostToWallAfterConnectInterceptor" />
<bean class="org.springframework.social.showcase.twitter.TweetAfterConnectInterceptor" />
</list>
</property>
</bean>
<bean id="psc" class="org.springframework.social.connect.web.ProviderSignInController" autowire="constructor" />
<bean id="signInAdapter" class="org.springframework.social.showcase.signin.SimpleSignInAdapter" autowire="constructor" />
<bean id="disconnectController" class="org.springframework.social.facebook.web.DisconnectController"
c:_0-ref="usersConnectionRepository" c:_1="${facebook.clientSecret}" />
</beans>
Która wersja Wiosna Social używacie? –
im przy użyciu Spring Social wersji 1.1.0. Czy muszę obniżyć licencję lub co? – waterfall37
Czy masz na myśli 1.1.0.M1? lub 1.1.0.M2? Wypróbuj najnowszą. Sprawdź obecność odpowiedniego pliku xsd w słoiku. Jeśli to nie działa, możesz wypróbować kompilacje snapshotów pokazane w [this] (https://github.com/SpringSource/spring-social-samples/blob/master/spring-social-showcase-xml/pom.xml) przykład. Jeśli zbudujesz jakąś aplikację do produkcji, lepiej będzie przejść na wersję 1.0.2.RELEASE (nie ma obsługi przestrzeni nazw xml, ale nie widzę teraz dużej przewagi). –