SpirngBoot使用拦截器

目录

前言

一、拦截器类

二、WebMVC配置类


前言

        在Spring Boot中,拦截器是用于处理请求和响应的重要工具。通过拦截器,我们可以实现一系列操作,如权限验证、日志记录、性能监控等。在本文中,我们将深入探讨如何使用Spring Boot拦截器来提高Web应用程序的性能和安全性。让我们一起探索这个强大的工具,看看它是如何帮助我们简化开发流程并提高应用程序的响应速度和可维护性的。

一、拦截器类

@Component
public class PageInterception implements HandlerInterceptor {

	@Override
	public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
		System.out.println("进入拦截器------------------");
		return true;
	}

	@Override
	public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception {
			PageUtil.removeThreadLocal();
		System.out.println("完成后调用------------------");
	}
}

        通过 PageInterception类去继承HandlerInterceptor ,并通过@Component注解注册进spring容器中。

二、WebMVC配置类

@Configuration
@SuppressWarnings("all")
public class WebMvcConfig implements WebMvcConfigurer {
	

	@Autowired
	private PageInterception pageInterception;

	@Override
	public void addInterceptors(InterceptorRegistry registry) {
	
		registry.addInterceptor(pageInterception);
}

        通过实现WebMvcConfigurer 接口后,重写addInterceptors(InterceptorRegistry registry)方法,并将注册拦截器。最后通过调用方法就发现可以使用拦截器啦

你可能感兴趣的:(springboot,spring,boot,intellij-idea,java)