- 相關(guān)推薦
如何開發(fā)部署websocket端點(diǎn)
下面YJBYS小編為大家整理了關(guān)于如何利用Java Websocket API的編程式版本開發(fā)并部署(服務(wù)器與客戶端)websocket端點(diǎn)的文章,希望對(duì)你有所幫助。
第一步——擴(kuò)展javax.websocket.Endpoint類
public class ProgrammaticEchoEnpoint extends Endpoint {
@Override
public void onOpen(Session session, EndpointConfig config) {
System.out.println("Peer " + session.getId() + " connected");
session.addMessageHandler(new MessageHandler.Whole() {
@Override
public void onMessage(String message) {
try {
session.getBasicRemote().sendText("Got message from " + session.getId() + "\n" + message);
} catch (IOException ex) {
}
}
});
}
@Override
public void onClose(Session session, CloseReason closeReason) {
System.out.println("Peer " + session.getId() + " disconnected due to " + closeReason.getReasonPhrase());
}
@Override
public void onError(Session session, Throwable error) {
System.out.println("Error communicating with peer " + session.getId() + ". Detail: "+ error.getMessage());
}
}
接下來我們還要編寫客戶端端點(diǎn)(使用同樣的API組合):
public class ProgrammaticEchoClient extends Endpoint {
@Override
public void onOpen(Session session, EndpointConfig config) {
System.out.println("Connected to server");
}
//a message handler and other life cycle implementations have been skipped on purpose...
}
第二步——實(shí)現(xiàn)ServerApplicationConfig接口
該接口屬于javax.websocket.server包的組成部分,且能夠通過覆寫以實(shí)現(xiàn)端點(diǎn)部署中的定制化邏輯(適用于注釋以及編程式端點(diǎn))。
public class CustomServerAppConfigProvider implements ServerApplicationConfig {
@Override
public Set getEndpointConfigs(Set> endpointClasses) {
Set result = new HashSet<>();
for (Class epClass : endpointClasses) {
//need to ignore Client endpoint class
if (epClass.equals(ProgrammaticChatEndpoint.class)) {
ServerEndpointConfig sec = ServerEndpointConfig.Builder.create(epClass, "/letschat").build();
result.add(sec);
}
}
return result;
}
@Override
public Set> getAnnotatedEndpointClasses(Set> scanned) {
return Collections.emptySet();
}
}
怎樣處理Client端點(diǎn)?
如果有必要,大家也可以創(chuàng)建自己的ClientEndpointConfig實(shí)例,并利用它對(duì)指向websocket服務(wù)器端點(diǎn)的連接進(jìn)行初始化。
WebSocketContainer webSocketContainer = ContainerProvider.getWebSocketContainer();
ClientEndpointConfig config = ClientEndpointConfig.Builder.create().decoders(StockTickDecoder.class).build();
Session session = webSocketContainer.connectToServer(StockTickerClient().class, config,
new URI("ws://hotstocks.com/ticker"));
注意事項(xiàng):
客戶端以及服務(wù)器端的config對(duì)象只能為等同于(編程式)對(duì)象的@ServerEndpoint以及@ClientEndpoint注釋元素(例如值、編碼器、解碼器以及配置器等等)。
各獨(dú)立builder類(ServerEndpointConfig.Builder與ClientEndpointConfig.Builder)用于分別創(chuàng)建服務(wù)器與客戶端配置實(shí)例。
ServerEndpointConfig實(shí)例的創(chuàng)建屬于mandatory,因?yàn)榉⻊?wù)器端點(diǎn)無法在不配合URI的前提下進(jìn)行部署。不過這種情況在客戶端端點(diǎn)方面不會(huì)出現(xiàn)——因?yàn)槠淙孔饔镁褪墙尤氍F(xiàn)有服務(wù)器端點(diǎn)。
端點(diǎn)config(服務(wù)器&客戶端)擁有configurator概念,其可通過對(duì)應(yīng)builder方法進(jìn)行創(chuàng)建與設(shè)置。
【如何開發(fā)部署websocket端點(diǎn)】相關(guān)文章:
Java開發(fā)Tomcat部署項(xiàng)目方法10-13
如何開發(fā)幼兒智力06-21
如何開發(fā)幼兒的右腦07-05
培訓(xùn)與開發(fā)規(guī)劃如何制定?07-27
如何開發(fā)企業(yè)高層客戶09-13
如何開發(fā)兒童智力07-13
如何面試Web前端開發(fā)10-10
如何開發(fā)中層管理者07-04
如何激勵(lì)員工開發(fā)新客戶07-31