Package org.springframework.boot.context.embedded

Examples of org.springframework.boot.context.embedded.EmbeddedServletContainerInitializedEvent


  private EmbeddedServletContainerInitializedEvent mockEvent(String name, int port) {
    EmbeddedWebApplicationContext applicationContext = mock(EmbeddedWebApplicationContext.class);
    EmbeddedServletContainer source = mock(EmbeddedServletContainer.class);
    given(applicationContext.getNamespace()).willReturn(name);
    given(source.getPort()).willReturn(port);
    EmbeddedServletContainerInitializedEvent event = new EmbeddedServletContainerInitializedEvent(
        applicationContext, source);
    return event;
  }
View Full Code Here

TOP

Related Classes of org.springframework.boot.context.embedded.EmbeddedServletContainerInitializedEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.