0
내가 보안 XMPP 연결을 만들려면
, 나는이사전 XMPP 연결 - SASLAuthentication,의 SocketFactory
<bean id="xmppConnection" class="o.s.i.xmpp.XmppConnectionFactoryBean">
<constructor-arg>
<bean class="org.jivesoftware.smack.ConnectionConfiguration">
<constructor-arg value="myServiceName"/>
<property name="truststorePath" value="..."/>
<property name="socketFactory" ref="..."/>
</bean>
</constructor-arg>
</bean>
종속에게
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.integration:spring-integration-xmpp:4.3.8.RELEASE")
testCompile("junit:junit")
}
을 시도하지만 클래스
o.s.i.xmpp.XmppConnectionFactoryBean
를 찾을 수 없습니다. 다른 종속성을 포함해야합니까?