WebMvcConfig.java
411 Bytes
package etunicorn;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.*;
/**
* Created by geoffrey on 29/01/17.
*/
@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter {
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(new GitHeaderInterceptor());
}
}