This commit is contained in:
Loredana Crusoveanu 2018-06-10 22:36:58 +03:00
parent 272497eaaf
commit 45b7401253
1 changed files with 9 additions and 9 deletions

View File

@ -6,10 +6,10 @@ import org.springframework.context.annotation.Configuration;
import com.baeldung.bootcustomfilters.filters.RequestResponseLoggingFilter;
// uncomment this and comment the @Component in the filter class definition to register only for a url pattern
//@Configuration
@Configuration
public class FilterConfig {
// uncomment this and comment the @Component in the filter class definition to register only for a url pattern
// @Bean
public FilterRegistrationBean<RequestResponseLoggingFilter> loggingFilter() {
FilterRegistrationBean<RequestResponseLoggingFilter> registrationBean = new FilterRegistrationBean<>();