You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

JSR356Servlet.java 717B

123456789101112131415161718
  1. package com.vaadin.tests;
  2. import com.vaadin.annotations.VaadinServletConfiguration;
  3. import com.vaadin.server.VaadinServlet;
  4. import com.vaadin.tests.integration.ServletIntegrationWebsocketUI;
  5. import javax.servlet.annotation.WebInitParam;
  6. import javax.servlet.annotation.WebServlet;
  7. /**
  8. * Created by elmot on 06-02-2017.
  9. */
  10. @WebServlet(urlPatterns = "/run-jsr356/*", name = "IntegrationUIProvider-Jsr356", asyncSupported = false, initParams = {
  11. @WebInitParam(name = "org.atmosphere.cpr.asyncSupport", value = "org.atmosphere.container.JSR356AsyncSupport")})
  12. @VaadinServletConfiguration(ui = ServletIntegrationWebsocketUI.class, productionMode = false)
  13. public class JSR356Servlet extends VaadinServlet {
  14. }