springboot项目统一响应结果封装

springboot项目统一响应结果封装

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

1、定义响应处理注解
(1)不处理响应结果- IgnoreResponseAdvice注解
@Target({
   ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface IgnoreResponseAdvice 

你可能感兴趣的:(spring,boot,java,后端)