List of usage examples for javax.servlet ServletContainerInitializer interface-usage
From source file org.cloudfoundry.reconfiguration.spring.AutoReconfigurationServletContainerInitializer.java
/** * An implementation of {@link ServletContainerInitializer} that sets Spring's {@code globalInitializerClasses} {@link * ServletContext} init param */ public final class AutoReconfigurationServletContainerInitializer implements ServletContainerInitializer {
From source file org.springframework.boot.web.embedded.tomcat.TomcatStarter.java
/**
* {@link ServletContainerInitializer} used to trigger {@link ServletContextInitializer
* ServletContextInitializers} and track startup errors.
*
* @author Phillip Webb
* @author Andy Wilkinson
From source file org.springframework.boot.context.embedded.tomcat.TomcatStarter.java
/**
* {@link ServletContainerInitializer} used to trigger {@link ServletContextInitializer
* ServletContextInitializers} and track startup errors.
*
* @author Phillip Webb
* @author Andy Wilkinson
From source file org.pidster.tomcat.websocket.jmx.WebSocketJMXInitializer.java
public class WebSocketJMXInitializer implements ServletContainerInitializer { private static final Log log = LogFactory.getLog(WebSocketJMXInitializer.class); @Override public void onStartup(Set<Class<?>> c, ServletContext ctx) throws ServletException {
From source file io.adeptj.runtime.core.RuntimeInitializer.java
/**
* An SCI(ServletContainerInitializer) that is called by the Container while startup is in progress.
* This will further call onStartup method of all of the {@link HandlesTypes} classes registered with this SCI.
*
* @author Rakesh.Kumar, AdeptJ
*/
From source file com.adeptj.runtime.core.RuntimeInitializer.java
/**
* An SCI(ServletContainerInitializer) that is called by the Container while startup is in progress.
* This will further call onStartup method of all of the {@link HandlesTypes} classes registered with this SCI.
*
* @author Rakesh.Kumar, AdeptJ
*/
From source file org.wso2.carbon.protobuf.listener.ProtobufServletContainerInitializer.java
@HandlesTypes({ ProtobufService.class }) public class ProtobufServletContainerInitializer implements ServletContainerInitializer { private static final Log log = LogFactory.getLog(ProtobufServletContainerInitializer.class); @Override