springboot拦截器
Posted _Lawrence
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot拦截器相关的知识,希望对你有一定的参考价值。
package com.llf.utils; import org.springframework.stereotype.Component; import org.springframework.web.servlet.config.annotation.InterceptorRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Component public class MyInterceptor implements WebMvcConfigurer { @Override public void addInterceptors(InterceptorRegistry registry) { System.out.print("拦截器执行。。。。。。。。。。。。。。。。。。。。。。"); } }
以上是关于springboot拦截器的主要内容,如果未能解决你的问题,请参考以下文章
Java 微服务 day02 源代码 SpringBoot 实战开发 SpringMVC高级配置:拦截器:HandlerExecutionChain
SpringBoot拦截器----addInterceptors