아래의 코드를 참고~!
this.mVertx = Vertx.newVertx();
final HttpServer server = this.mVertx.createHttpServer().websocketHandler(new Handler<ServerWebSocket>() {
@Override
public void handle (final ServerWebSocket ws) {
여기는 클라이언트와 Websocket이 연결이 발생하여 실행되는 부분
ws.dataHandler(new Handler<Buffer>() {
@Override
public void handle (final Buffer buffer) 받은 메시지 처리하는 부분...
}//end handle Method
});
ws.closedHandler(new Handler<Void>() {
@Override
public void handle (Void arg0) {
소켓 연결이 끝나는 부분
}//end handle Method
});
}//end handle Method
});//end websocketHandler Method
server.listen(PORT);
'Development > Web & Server' 카테고리의 다른 글
[Spring Framework] Multipart file Upload 설정하기~! (0) | 2013.12.14 |
---|---|
[MYSQL] root 사용자 권한 비밀번호 변경 (0) | 2013.12.12 |
[AWS] S3 연동하기~! Java (0) | 2013.12.11 |
[Hibernate] C3P0 connection Pool (0) | 2013.12.06 |
[Play Framework] No EntityManager bound to this thread. Try wrapping this call in JPA.withTransaction, or ensure that the HTTP context is setup on this thread. (0) | 2013.12.05 |