springboot和spring版本对应:
springboot1==========>spring4
springboot2==========>spring5
spring4的几种通知的执行顺序:
程序执行正常:
1、环绕通知前
2、@Before通知
3、程序逻辑
4、环绕通知后
5、@After通知
6、@AfterReturning通知
程序执行异常:
1、环绕通知前
2、@Before通知
3、@After通知
4、@AfterThrowing异常通知
异常日志
spring5的几种通知的执行顺序:
程序执行正常:
1、环绕通知前
2、@Before通知
3、程序逻辑
4、@AfterReturning通知
5、@After通知
6、环绕通知后
程序执行异常:
1、环绕通知前
2、@Before通知
3、@AfterThrowing异常通知
4、@After通知
异常日志
网友评论