Class AnnotationCometDServlet

  • All Implemented Interfaces:
    Serializable, javax.servlet.Servlet, javax.servlet.ServletConfig

    public class AnnotationCometDServlet
    extends CometDServlet

    A specialized version of CometDServlet that can be configured with the init-parameter services to be a comma separated list of class names of annotated services, that will be processed by ServerAnnotationProcessor upon initialization.

    A configuration example:

     <web-app xmlns="http://java.sun.com/xml/ns/javaee" ...>
    
      <servlet>
        <servlet-name>cometd</servlet-name>
        <servlet-class>org.cometd.annotation.AnnotationCometDServlet</servlet-class>
        <init-param>
          <param-name>services</param-name>
          <param-value>org.cometd.examples.FooService, org.cometd.examples.BarService</param-value>
        </init-param>
      </servlet>
     
    See Also:
    Serialized Form
    • Constructor Detail

      • AnnotationCometDServlet

        public AnnotationCometDServlet()
    • Method Detail

      • init

        public void init()
                  throws javax.servlet.ServletException
        Overrides:
        init in class CometDServlet
        Throws:
        javax.servlet.ServletException
      • processService

        protected Object processService​(ServerAnnotationProcessor processor,
                                        String serviceClassName)
                                 throws javax.servlet.ServletException
        Throws:
        javax.servlet.ServletException
      • registerService

        protected void registerService​(Object service)
      • destroy

        public void destroy()
        Specified by:
        destroy in interface javax.servlet.Servlet
        Overrides:
        destroy in class CometDServlet
        See Also:
        GenericServlet.destroy()
      • deregisterService

        protected void deregisterService​(Object service)
      • getServices

        protected List<Object> getServices()