All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pl.fhframework.MvcConfig Maven / Gradle / Ivy

package pl.fhframework;

import org.springframework.boot.web.servlet.ServletListenerRegistrationBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.web.session.HttpSessionEventPublisher;

@Configuration
public class MvcConfig {
    @Bean
    public ServletListenerRegistrationBean httpSessionEventPublisher() {
        return new ServletListenerRegistrationBean<>(new HttpSessionEventPublisher());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy