文章目录 引言I 处理全局ExceptionII 定时任务III 引入springboot MVC3.1 添加Spring Web依赖3.2 重写SpringBootServletInitializer3.3 WebMvcConfigurer 引言 I 处理全局Exception 类上加入注解@ControllerAdvice 定义controller切面方法上加入注解@ExceptionHandler(value = Exception.class)说明需要拦截的Exception import org<