|
|
|
@ -36,6 +36,7 @@ import org.eclipse.jetty.server.SslConnectionFactory;
|
|
|
|
|
import org.eclipse.jetty.server.handler.HandlerCollection;
|
|
|
|
|
import org.eclipse.jetty.server.handler.HandlerWrapper;
|
|
|
|
|
import org.eclipse.jetty.servlet.ServletHolder;
|
|
|
|
|
import org.eclipse.jetty.util.thread.QueuedThreadPool;
|
|
|
|
|
import org.eclipse.jetty.util.thread.ThreadPool;
|
|
|
|
|
import org.eclipse.jetty.webapp.Configuration;
|
|
|
|
|
import org.eclipse.jetty.webapp.WebAppContext;
|
|
|
|
@ -51,6 +52,7 @@ import org.springframework.boot.web.servlet.server.AbstractServletWebServerFacto
|
|
|
|
|
import org.springframework.http.HttpHeaders;
|
|
|
|
|
|
|
|
|
|
import static org.assertj.core.api.Assertions.assertThat;
|
|
|
|
|
import static org.hamcrest.CoreMatchers.instanceOf;
|
|
|
|
|
import static org.mockito.ArgumentMatchers.any;
|
|
|
|
|
import static org.mockito.Mockito.inOrder;
|
|
|
|
|
import static org.mockito.Mockito.mock;
|
|
|
|
@ -277,6 +279,22 @@ public class JettyServletWebServerFactoryTests
|
|
|
|
|
.isSameAs(threadPool);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
public void startFailsWhenThreadPoolIsTooSmall() throws Exception {
|
|
|
|
|
JettyServletWebServerFactory factory = getFactory();
|
|
|
|
|
factory.addServerCustomizers(new JettyServerCustomizer() {
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void customize(Server server) {
|
|
|
|
|
QueuedThreadPool threadPool = server.getBean(QueuedThreadPool.class);
|
|
|
|
|
threadPool.setMaxThreads(2);
|
|
|
|
|
threadPool.setMinThreads(2);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
this.thrown.expectCause(instanceOf(IllegalStateException.class));
|
|
|
|
|
factory.getWebServer().start();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
@SuppressWarnings("serial")
|
|
|
|
|
// Workaround for Jetty issue - https://bugs.eclipse.org/bugs/show_bug.cgi?id=470646
|
|
|
|
|