通用模块
- 通用代码定义、配置定义
- 统一的响应处理
- 统一的异常处理
定义响应模板
1 | import lombok.AllArgsConstructor; |
进行统一响应的拦截
1 | import org.springframework.core.MethodParameter; |
自定义注解
1 | import java.lang.annotation.ElementType; |
统一异常的处理
1 | import org.springframework.web.bind.annotation.ExceptionHandler; |
统一配置
1 | import org.springframework.context.annotation.Configuration; |