SpringBoot自定义拦截器

MyInterceptor.java

@Configuration  // 声明这是一个配置 拦截器
public class MyInterceptor extends WebMvcConfigurerAdapter {
    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        HandlerInterceptor interceptor = new HandlerInterceptor() {
            @Override
            public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
                System.out.println("自定义拦截求...");
                return true;
            }

            @Override
            public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception {

            }

            @Override
            public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception {

            }
        };
        // 注册拦截器
        // "/**" 表示拦截所有
        registry.addInterceptor(interceptor).addPathPatterns("/**");
    }
}

SpringApp.java

// 扫描的包 要包含拦截器
@SpringBootApplication(scanBasePackages = {"demo.controller", "demo.interceptor"})
public class SpringApplications2 {
    @Bean
    public HttpMessageConverters fastJsonMessageConverter(){
        // 创建 fastjson的消息转换器
        FastJsonHttpMessageConverter converter = new FastJsonHttpMessageConverter();
        // 创建 fastjson的配置对象
        FastJsonConfig config = new FastJsonConfig();
        // 对 json 数据 进行格式化
        config.setSerializerFeatures(SerializerFeature.PrettyFormat);
        converter.setFastJsonConfig(config);
        HttpMessageConverter<?> con = converter;
        return new HttpMessageConverters(con);
    }
    public static void main(String[] args) {
        SpringApplication.run(SpringApplications2.class, args);
    }
}

追加,如果要实现 fastJson功能
application.properties

# 开启 fastjson
spring.http.encoding.force=true
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值