Automatically register HttpSessionIdListener's with the servlet context

Closes gh-24879
This commit is contained in:
Andy Wilkinson 2021-01-19 11:28:34 +00:00
parent 48002e969f
commit 535050ad48
2 changed files with 28 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright 2012-2019 the original author or authors.
* Copyright 2012-2021 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -27,6 +27,7 @@ import javax.servlet.ServletContextListener;
import javax.servlet.ServletRequestAttributeListener;
import javax.servlet.ServletRequestListener;
import javax.servlet.http.HttpSessionAttributeListener;
import javax.servlet.http.HttpSessionIdListener;
import javax.servlet.http.HttpSessionListener;
import org.springframework.util.Assert;
@ -44,6 +45,7 @@ import org.springframework.util.ClassUtils;
* <li>{@link ServletRequestListener}</li>
* <li>{@link ServletRequestAttributeListener}</li>
* <li>{@link HttpSessionAttributeListener}</li>
* <li>{@link HttpSessionIdListener}</li>
* <li>{@link HttpSessionListener}</li>
* <li>{@link ServletContextListener}</li>
* </ul>
@ -63,6 +65,7 @@ public class ServletListenerRegistrationBean<T extends EventListener> extends Re
types.add(ServletRequestListener.class);
types.add(ServletRequestAttributeListener.class);
types.add(HttpSessionAttributeListener.class);
types.add(HttpSessionIdListener.class);
types.add(HttpSessionListener.class);
types.add(ServletContextListener.class);
SUPPORTED_TYPES = Collections.unmodifiableSet(types);

View File

@ -1,5 +1,5 @@
/*
* Copyright 2012-2019 the original author or authors.
* Copyright 2012-2021 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -24,6 +24,7 @@ import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpSessionIdListener;
import org.junit.jupiter.api.Test;
@ -70,6 +71,17 @@ class ServletContextInitializerBeansTests {
assertThat(initializerBeans.iterator()).toIterable().hasOnlyElementsOfType(TestServletContextInitializer.class);
}
@Test
void whenAnHttpSessionIdListenerBeanIsDefinedThenARegistrationBeanIsCreatedForIt() {
load(HttpSessionIdListenerConfiguration.class);
ServletContextInitializerBeans initializerBeans = new ServletContextInitializerBeans(
this.context.getBeanFactory());
assertThat(initializerBeans).hasSize(1);
assertThat(initializerBeans).first().isInstanceOf(ServletListenerRegistrationBean.class)
.extracting(ServletListenerRegistrationBean.class::cast)
.extracting(ServletListenerRegistrationBean::getListener).isInstanceOf(HttpSessionIdListener.class);
}
private void load(Class<?>... configuration) {
this.context = new AnnotationConfigApplicationContext(configuration);
}
@ -109,6 +121,17 @@ class ServletContextInitializerBeansTests {
}
@Configuration(proxyBeanMethods = false)
static class HttpSessionIdListenerConfiguration {
@Bean
HttpSessionIdListener httpSessionIdListener() {
return (event, oldId) -> {
};
}
}
static class TestServlet extends HttpServlet implements ServletContextInitializer {
@Override