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("拦截器执行。。。。。。。。。。。。。。。。。。。。。。"); } }

浙公网安备 33010602011771号