Ensure DeploymentInfo contextPath is never "/"
Undertow 1.1 expects that DeploymentInfo.contextPath is set to "/" for
a root context. If it is left as "" the session cookie path is not
correctly set. See UNDERTOW-350 for background.
This commit simplifies the original work-around committed in 78c22813d
.
Fixes gh-2065
This commit is contained in:
parent
90e9187b80
commit
c8b9da0492
|
@ -31,7 +31,6 @@ import io.undertow.servlet.api.DeploymentInfo;
|
|||
import io.undertow.servlet.api.DeploymentManager;
|
||||
import io.undertow.servlet.api.ListenerInfo;
|
||||
import io.undertow.servlet.api.MimeMapping;
|
||||
import io.undertow.servlet.api.ServletSessionConfig;
|
||||
import io.undertow.servlet.api.ServletStackTraces;
|
||||
import io.undertow.servlet.handlers.DefaultServlet;
|
||||
import io.undertow.servlet.util.ImmediateInstanceFactory;
|
||||
|
@ -322,7 +321,8 @@ public class UndertowEmbeddedServletContainerFactory extends
|
|||
deployment.addListener(new ListenerInfo(StartupListener.class,
|
||||
new ImmediateInstanceFactory<StartupListener>(startupListener)));
|
||||
deployment.setClassLoader(getServletClassLoader());
|
||||
deployment.setContextPath(getContextPath());
|
||||
String contextPath = getContextPath();
|
||||
deployment.setContextPath(StringUtils.hasLength(contextPath) ? contextPath : "/");
|
||||
deployment.setDeploymentName("spring-boot");
|
||||
if (isRegisterDefaultServlet()) {
|
||||
deployment.addServlet(Servlets.servlet("default", DefaultServlet.class));
|
||||
|
@ -331,12 +331,6 @@ public class UndertowEmbeddedServletContainerFactory extends
|
|||
deployment.setServletStackTraces(ServletStackTraces.NONE);
|
||||
deployment.setResourceManager(getDocumentRootResourceManager());
|
||||
configureMimeMappings(deployment);
|
||||
if (StringUtils.isEmpty(getContextPath())) {
|
||||
// Work around UNDERTOW-350
|
||||
ServletSessionConfig servletSessionConfig = new ServletSessionConfig();
|
||||
servletSessionConfig.setPath("/");
|
||||
deployment.setServletSessionConfig(servletSessionConfig);
|
||||
}
|
||||
for (UndertowDeploymentInfoCustomizer customizer : this.deploymentInfoCustomizers) {
|
||||
customizer.customize(deployment);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue