摘要:
@ControllerAdvice,它是一个Controller增强器,可对controller中被 @RequestMapping注解的方法加一些逻辑处理。最常用的就是异常处理 1.编写异常捕捉组件 @ControllerAdvice public class ExceptionHandle { 阅读全文
摘要:
实现一:实现ApplicationRunner接口 @Component public class MyApplicationRunner implements ApplicationRunner { @Override public void run(ApplicationArguments ar 阅读全文