0
首先,我想讓你知道,我想聊天服務器,我可以與spring.So決定使用Apache Vysper,但我找不到適當的文檔。 我發現的所有內容都是this doc,但是因爲我是xmpp的新手,我無法正確理解文檔。 請問任何人都可以幫我配置Spring嗎?Apache Vysper服務器配置?
我已經這樣做了:
XMPPServer server = new XMPPServer("chatapp");
server.start();
// choose the storage you want to use
StorageProviderRegistry providerRegistry = new JcrStorageProviderRegistry();
//StorageProviderRegistry providerRegistry = new MemoryStorageProviderRegistry();
final AccountManagement accountManagement = (AccountManagement) providerRegistry.retrieve(AccountManagement.class);
if(!accountManagement.verifyAccountExists(EntityImpl.parse("[email protected]"))) {
accountManagement.addUser(EntityImpl.parse("[email protected]"), "password1");
}
但我不知道如何發送和接收消息。
嗨@Manoj辛格。您是否設法找到發送和接收消息的方式?我試圖編寫一個在Smack和Vysper本地運行的聊天應用程序。如果可以的話,請你告訴我如何去做。也許你可以在這裏爲你的問題添加一個答案,告訴你如何去做。謝謝。希望你能幫助。會真的很感激它。 – 2015-07-05 07:41:39