org.springframework.web.filter.GenericFilterBean Java Examples

The following examples show how to use org.springframework.web.filter.GenericFilterBean. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AppConfig.java    From cloudbreak with Apache License 2.0 5 votes vote down vote up
@Bean
public FilterRegistrationBean<GenericFilterBean> turnOnStackUnderOperationService() {
    FilterRegistrationBean<GenericFilterBean> registration = new FilterRegistrationBean();
    registration.setFilter(new GenericFilterBean() {
        @Override
        public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
            stackUnderOperationService.on();
            chain.doFilter(request, response);
            stackUnderOperationService.off();
        }
    });
    registration.addUrlPatterns("/*");
    registration.setName("turnOnStackUnderOperationService");
    return registration;
}