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

com.github.xuchen93.server.config.WebConfig Maven / Gradle / Ivy

package com.github.xuchen93.server.config;

import com.github.xuchen93.web.handler.RequestHandler;
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 WebConfig implements WebMvcConfigurer {

	@Override
	public void addInterceptors(InterceptorRegistry registry) {
		registry.addInterceptor(new RequestHandler())
				.addPathPatterns("/**")
				.excludePathPatterns("/xuchen/hello", "/login");
	}
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy