
de.cgrotz.spring.status.webmvc.SpringStatusWebMvcAutoConfiguration Maven / Gradle / Ivy
The newest version!
package de.cgrotz.spring.status.webmvc;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Configuration
public class SpringStatusWebMvcAutoConfiguration implements WebMvcConfigurer {
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(new StatusHeaderInterceptor());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy