2019年9月4日

玩转 SpringBoot 2 快速整合 Filter

摘要: 概述 SpringBoot 中没有 web.xml, 我们无法按照原来的方式在 web.xml 中配置 Filter 。但是我们可以通过 JavaConfig(@Configuration +@Bean)方式进行配置。通过FilterRegistrationBean 将自定义 Filter 添加到 阅读全文

posted @ 2019-09-04 17:07 桌前明月 阅读(722) 评论(0) 推荐(0) 编辑

SpringBoot 2 快速整合 | 统一异常处理

摘要: 统一异常处理相关注解介绍 @ControllerAdvice 声明在类上用于指定该类为控制增强器类,如果想声明返回的结果为 RESTFull 风格的数据,需要在声明 @ExceptionHandler 注解的方法上同时加 上 @ResponseBody @RestControllerAdvice 声 阅读全文

posted @ 2019-09-04 16:25 桌前明月 阅读(1231) 评论(0) 推荐(1) 编辑

导航