coldsmog开发笔记
JS 事件笔记
Ckeditor 上传WPS图片失败问题
Springboot
SpringBoot 统一异常处理
Springboot 引入外部jar包
Springboot 打成war包
Springboot 多环境配置
SpringBoot @Scope注解学习
Springboot 快速生成项目API文档
SpringCache 缓存
Spring jetcache 二级缓存
Springboot 按条件装配类
FastJson的JsonPath语法
正则表达式语法
Spring 路径匹配
Feign 基础数据操作
监控Feign调用metrics
Springboot feign的性能优化
Jackson 设置序列化属性
SpringBoot 集成 Spring Data Mongodb 操作 MongoDB
MongoDB 的一些注意事项
MongoDB 指令对比
Jackson 解析XML
Springboot Redis注册
SpringBoot RedisTemplate批量插入
Springboot 指标监控Micrometer
springboot validation 注解校验
springboot 引入配置
Springboot 静态文件处理
Springboot 导出csv文件
Springboot 事件驱动(发布/订阅模式)
Springboot 启动过程和扩展点
Springboot 优化停机上下线
Spring自动装配 - 干饭角度学习
Springboot ShardingJDBC
Springboot的重试
springboot 动态修改端口
Oracle
Oracle 中实现自增ID
Oracle 定时任务
Oracle 解锁临时表
Oracle 检查连接数
Oracle 表空间
Oracle 解释执行SQL
markdown作图(适用typora)
服务器压测
业务对象层和数据层
并发限流处理
中间件
Yarn的使用
Dubbo学习笔记-RPC扩展和本地Mock
Dubbo学习笔记-泛化实现进行mock
Redis缓存穿透,缓存击穿,缓存雪崩
Galera 集群说明
Pip 镜像
pip 使用
MySQL命令行
数据库缓存双写方案
Git相关操作
Redis 操作时间复杂度一览
nacos 杂记
mybatis 散记
shardingjdbc
一次线上事故排查发现的Caffeine缓存死锁问题
设计模式
重新讲讲单例模式和几种实现
更优雅地实现策略模式
Http-headers
Prometheus 杂散笔记
JAVA 散记
CompletableFuture
Gson、FastJson、Jackson、json-lib对比总结
jackson 时间的序列化踩坑
JVM
自定义注解
mysql类型和java类型 转换一览表
枚举维护一个Map<value, Enum>的映射
Java中String +、concat、StringBuilder、StringBuffer 性能对比
TraceId 使用
MySQL 多数据源处理
Mybatis-plus 流式查询
JAVA发送win 桌面通知
idea 启动项目失败非代码问题杂记
Lambda 简述
Arthas 使用笔记
一种链式更新数据的数据模式
Skywalking 新增中间件插件
Redission 使用
数据导出为图片
IDEA 的热重启
Netty 工具类
maven 插件
TCP 抓包
本文档使用 MrDoc 发布
-
+
首页
SpringBoot 统一异常处理
## 统一异常处理 ``` /** * description: 统一异常处理 * * @author quanhuan.huang * @version 1.0 * @date 2021/3/9 17:12 */ @ControllerAdvice @ResponseBody @Slf4j public class ExceptionConfig { @ExceptionHandler(value = RuntimeException.class) public Result handlerRuntimeException(RuntimeException e, HttpServletRequest request) { log.error("运行异常,url={}", requst.getRequestURI(), e); return Result.fail(e); } @ExceptionHandler(value = Exception.class) public Result handlerException(Exception e) { log.error(e.getMessage(), e); return Result.fail(e); } /** * 参数验证异常(前端json格式提交) 配合@Validated @Valid和@NotNull使用 */ @ExceptionHandler(MethodArgumentNotValidException.class) public Result handleParameterException(MethodArgumentNotValidException e) { String message = logWrite(e.getBindingResult()); return Result.fail(message); } /** * 参数验证异常(前端form表单格式提交) */ @ExceptionHandler(BindException.class) public Result handlerBindException(BindException e) { String message = logWrite(e.getBindingResult()); return Result.fail(message); } private String logWrite(BindingResult e) { StringBuilder message = new StringBuilder(); for(FieldError item : e.getFieldErrors()){ message.append(item.getField()).append(item.getDefaultMessage()).append(" \n"); } log.error(message.toString(), e); return message.toString(); } } ``` ## 优雅参数校验 @Validated @Valid和@NotNull https://www.jianshu.com/p/3267689ebf1b ``` <dependency> <groupId>org.hibernate.validator</groupId> <artifactId>hibernate-validator</artifactId> <version>6.0.17.Final</version> </dependency> ``` ## 统一返回类 ``` package com.xindeco.xdmail.entity; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.io.Serializable; /** * description: 统一返回类 * * @author quanhuan.huang * @version 1.0 * @date 2021/2/4 16:07 */ @ApiModel("统一返回类") @Data public class Result<T> implements Serializable { private static final long serialVersionUID = -3590682968045255221L; public final static int SUCCESS_CODE = 1; public final static int FAIL_CODE = 0; /** * 消息名 */ @ApiModelProperty("程序执行结果,错误时为e.getmessage()") private String message; /** * 直接标记 */ @ApiModelProperty("true执行成功 false执行失败") private Boolean flag; /** * 信号编码 */ @ApiModelProperty("默认1为真,0为假,其余自定义") private Integer code; /** * 成功时携带数据 */ private T data; public Result(String message, Boolean flag, Integer code, T data) { this.message = message; this.flag = flag; this.code = code; this.data = data; } public static <T> Result success(T data) { return new Result(null, true, SUCCESS_CODE, data); } public static <T> Result success(String message, T data) { return new Result(message, true, SUCCESS_CODE, data); } public static <T> Result fail(String message) { return new Result(message, false, FAIL_CODE, null); } public static <T> Result fail(Integer code, String message) { return new Result(message, false, code, null); } public static <T> Result fail(Exception e) { return new Result(e.getLocalizedMessage(), false, FAIL_CODE, null); } } ```
寒烟濡雨
2024年7月29日 16:22
转发文档
收藏文档
上一篇
下一篇
手机扫码
复制链接
手机扫一扫转发分享
复制链接
关于 MrDoc
觅思文档MrDoc
是
州的先生
开发并开源的在线文档系统,其适合作为个人和小型团队的云笔记、文档和知识库管理工具。
如果觅思文档给你或你的团队带来了帮助,欢迎对作者进行一些打赏捐助,这将有力支持作者持续投入精力更新和维护觅思文档,感谢你的捐助!
>>>捐助鸣谢列表
微信
支付宝
QQ
PayPal
Markdown文件
分享
链接
类型
密码
更新密码