public abstract class WebSocketServlet
extends javax.servlet.http.HttpServlet
To use this servlet, you will be required to register your websockets with the WebSocketServerFactory so that it can create your websockets under the
appropriate conditions.
The most basic implementation would be as follows.
package my.example;
import org.eclipse.jetty.websocket.servlet.WebSocketServlet;
import org.eclipse.jetty.websocket.servlet.WebSocketServletFactory;
public class MyEchoServlet extends WebSocketServlet
{
@Override
public void configure(WebSocketServletFactory factory)
{
// set a 10 second idle timeout
factory.getPolicy().setIdleTimeout(10000);
// register my socket
factory.register(MyEchoSocket.class);
}
}
Note: that only request that conforms to a "WebSocket: Upgrade" handshake request will trigger the WebSocketServerFactory handling of creating
WebSockets.
Configuration / Init-Parameters:
Note: If you use the @WebSocket annotation, these configuration settings can be specified on a per WebSocket basis, vs a per Servlet
basis.
| Constructor and Description |
|---|
WebSocketServlet() |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
configure(WebSocketServletFactory factory) |
void |
destroy() |
void |
init() |
protected void |
service(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response) |
doDelete, doGet, doHead, doOptions, doPost, doPut, doTrace, getLastModified, servicepublic abstract void configure(WebSocketServletFactory factory)
public void destroy()
destroy in interface javax.servlet.Servletdestroy in class javax.servlet.GenericServletpublic void init()
throws javax.servlet.ServletException
init in class javax.servlet.GenericServletjavax.servlet.ServletExceptionGenericServlet.init()protected void service(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
throws javax.servlet.ServletException,
IOException
service in class javax.servlet.http.HttpServletjavax.servlet.ServletExceptionIOExceptionHttpServlet.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)Copyright © 1995-2013 Mort Bay Consulting. All Rights Reserved.