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

org.heigit.ohsome.ohsomeapi.config.LoggingConfig Maven / Gradle / Ivy

There is a newer version: 1.10.4
Show newest version
package org.heigit.ohsome.ohsomeapi.config;

import org.heigit.ohsome.ohsomeapi.interceptor.LoggingRequestInterceptor;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

/** Logger config, used for logging response code, accessed URI and execution time. */
@Configuration
public class LoggingConfig implements WebMvcConfigurer {

  @Autowired
  private LoggingRequestInterceptor loggingRequestInterceptor;

  @Override
  public void addInterceptors(InterceptorRegistry registry) {
    registry.addInterceptor(loggingRequestInterceptor).addPathPatterns("/elements/**/",
        "/elementsFullHistory/**/", "/metadata/**/", "/users/**/");
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy