摘要: 自定义拦截器共两步:第一:注册。第二:定义拦截器。 一、注册 @Configuration 继承WebMvcConfigurationAdapter(SpringBoot2.X之前旧版本) 旧版本代码 SpringBoot2.X 新版本配置拦截器 implements WebMvcConfigure 阅读全文
posted @ 2018-10-18 23:01 platycoden 阅读(2221) 评论(0) 推荐(0) 编辑
摘要: 一、自定义原生Servlet 1、启动类里面增加注解 @ServletComponentScan 2、Servlet上添加注解 @WebServlet(name = "userServlet",urlPatterns = "/v1/api/test/customs") 二、自定义原生Listener 阅读全文
posted @ 2018-10-18 15:05 platycoden 阅读(652) 评论(0) 推荐(0) 编辑