springboot项目统一响应结果封装

2023-04-11 12:59:17

springboot项目统一响应结果封装

一、通过注解+AOP方式实现

1、定义响应处理注解
(1)不处理响应结果- IgnoreResponseAdvice注解
@Target({
   ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface IgnoreResponseAdvice 
  • 作者:青春不散场
  • 原文链接:https://blog.csdn.net/QingChunBuSanChang/article/details/125370824
    更新时间:2023-04-11 12:59:17