listener 등록

spring-boot 2022. 6. 10. 01:22


- 등록
https://www.baeldung.com/httpsessionlistener_with_metrics

http://theblasfrompas.blogspot.com/2016/08/httpsessionlistener-with-spring-boot.html?m=1


@Bean
public ServletListenerRegistrationBean<HttpSessionListener> sessionListener() {
    return new ServletListenerRegistrationBean<HttpSessionListener>(new SessionListener());
}


위의 방법은 spring-session사용시 적용 안됨


- @WebListener
https://www.techgeeknext.com/spring-boot-session-listener






'spring-boot' 카테고리의 다른 글

spring-boot-redis  (0) 2022.08.22
spring-boot 2.4 이상 변경사항  (0) 2022.07.26
interceptor exclude  (0) 2022.06.09
spring-boot cache with redis  (0) 2022.05.25
spring-boot without WAS  (0) 2022.05.16
Posted by 張's blog
,