Last active
January 28, 2019 14:10
-
-
Save facundofarias/4cd9256ffb833b8781b01ea260bcec99 to your computer and use it in GitHub Desktop.
Enabling WebSockets on Jersey (Tyrus)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dependency> | |
<groupId>javax.websocket</groupId> | |
<artifactId>javax.websocket-api</artifactId> | |
<version>1.1</version> | |
</dependency> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.IOException; | |
import javax.websocket.OnClose; | |
import javax.websocket.OnError; | |
import javax.websocket.OnMessage; | |
import javax.websocket.OnOpen; | |
import javax.websocket.Session; | |
import javax.websocket.server.ServerEndpoint; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
@ServerEndpoint(value = "/echo") | |
public class WebSocketResource | |
{ | |
private static final Logger log = LoggerFactory.getLogger(WebSocketResource.class); | |
/** | |
* This method is invoked when the client closes a WebSocket connection. | |
* | |
* @param session | |
* @return | |
*/ | |
@OnClose | |
public void onClose(Session session) | |
{ | |
log.info("[Session {}] Session has been closed.", session.getId()); | |
} | |
/** | |
* This method is invoked when an error was detected on the connection. | |
* | |
* @param session | |
* @param t | |
* @return | |
*/ | |
@OnError | |
public void onError(Session session, Throwable t) | |
{ | |
log.info("[Session {}] An error has been detected: {}.", session.getId(), t.getMessage()); | |
} | |
/** | |
* This method is invoked each time that the client receives a WebSocket message. | |
* | |
* @param message | |
* @param session | |
* @return | |
*/ | |
@OnMessage | |
public String onMessage(String message, Session session) | |
{ | |
log.info("[Session {}] Sending message: {}", session.getId(), message); | |
return message; // echo back the message received | |
} | |
/** | |
* OnOpen (when a socket has been opened) allows us to intercept the creation of a new session. | |
* The session class allows us to send data to the user. | |
* In the method onOpen, we'll let the user know that the handshake was | |
* successful. | |
*/ | |
@OnOpen | |
public void onOpen(Session session) | |
{ | |
log.info("[Session {}] Session has been opened.", session.getId()); | |
try { | |
session.getBasicRemote().sendText("Connection Established"); | |
} catch (IOException ex) { | |
ex.printStackTrace(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is not related to jersey at all.