前后端协议联协
自定义项目系统级异常
axios.get("/book").then((res)=>{});
axios.post("/book",this.formData).then((res)=>{});
axios.delete("/book"+row.id).then((res)=>{});
axios.put("/book",this.formData).then((res)=>{});
axios.get("/books"+row.id.then((res)=>{});
拦截器
拦截器概念
- 拦截器(Interceptor)是一种动态拦截方法调用的机制,在SpringMVC中动态拦截控制器方法的执行
- 作用:在指定的方法调用前后执行预先设定的代码,还可以阻止原始的方法执行
- 与过滤器的区别
-归属不同:Filter属于Servlet技术,Interceptor属于SpringMVC技术
-拦截内容不同:Filter对所有访问进行增强,Interceptor仅对SpringMVC的访问进行增强
入门案例
①:声明拦截器的bean,并实现HandlerInterceptor接口
public class ProjectInterceptor implements HandlerInterceptor {
public bookean preHandle(..) throws Exception {
System.out.println("preHandle...");
return true;
}
public void postHandle(..) throws Exception {
System.out.println("postHandle...");
}
public void afterHandle(...) throws Exception {
System.out.println("afterCompletion...");
}
}
②:定义一个配置类,继承WebMvcConfigurationSupport,实现addInterceptor方法
@Configuration
public class SpringMvcSupport extends WebMvcConfigurationSupport {
@Override
public void addInterceptors(InterceptorRegistry registry) {
...
}
}
③:添加拦截器并设定拦截的访问路径,路径乐园通过可变参数设置多个
@Configuration
public class SpringMvcSupport extends WebMvcConfigurationSupport {
@Autowired
private PorjectInterceptor projectInterceptor;
@Override
public void addInterceptoes(InterceptorRegistry registry) {
registry.addInterceptor(projectInterceptor).addPathPattern("/books");
}
}
④:使用标准接口WebMvcConfigurer简化开发
@Configuration
@ComponentScan("com.mei.controller")
@EnableWebMvc
public class SpringMvcConfig implements WebMvcConfigurer {
@Autowired
private PorjectInterceptor projectInterceptor
public void addInterceptor(InterceptorRegistry registry) {
registry.addInterceptor(projectInterceptor).addPathPatterns("/books","/book/*");
}
}
执行流程
拦截器参数
- 前置处理
public boolean preHandle(HttpServiletRequest request,
HttpServletResponse response,
Object handler) throws Exception {
System.out.println("preHandle..")
return true;
}
-
参数
-request:请求对象
-response:响应对象
-handler:被调用的处理器对象,本质上是一个方法对象,对反射技术中的Method对象进行了再包装 -
返回值
-返回值为false,被拦截的处理器将不执行 -
完成后处理
public void afterCompletion(HttpServletRequest request,
HttpServletResponse response,
Object handler,
Exception ex)throws Exception{
System.out.println("afterCompletion...");
}
- 参数
-ex:如果处理器执行过程中出现异常对象,可以对一场情况进行单独处理
多拦截器执行
- 当配置多个拦截器时,形成拦截器链子
- 拦截器的运行顺序参照拦截器田间顺序为准
- 当拦截器中出现对原始处理器的拦截,后面的拦截器均终止运行
- 当拦截器运行中断,仅运行配置在前面的拦截器的afterCompletion操作