Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to implement Springboot global exception handling in Java

2025-01-15 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

这篇文章主要为大家展示了"Java中如何实现Springboot全局异常处理",内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下"Java中如何实现Springboot全局异常处理"这篇文章吧。

一、思路?

springboot提供了全局异常处理的注解,我们需要弄明白的是。扑捉什么异常,结果如果返回,如何优雅的管理返回的结果集。

二、步骤1.自定义接口:

自定义接口主要是描述返回的code码和返回msg,自定义错误描述枚举需要实现这个接口

public interface ErrorType { /** * 返回code * * @return */ String getCode(); /** * 返回mesg * * @return */ String getMesg();}2.自定义错误枚举

使用枚举,看起来代码很优雅,并且不用使用static final来定义类型。

@Getterpublic enum SystemErrorType implements ErrorType { SYSTEM_ERROR("-1", "系统异常"), SYSTEM_BUSY("000001", "系统繁忙,请稍候再试"); /** * 错误类型码 */ private String code; /** * 错误类型描述信息 */ private String mesg; SystemErrorType(String code, String mesg) { this.code = code; this.mesg = mesg; }}3.自定义异常类@Getterpublic class MyException extends RuntimeException{ /** * 异常对应的错误类型 */ private final ErrorType errorType; /** * 默认是系统异常 */ public MyException () { this.errorType = SystemErrorType.SYSTEM_ERROR; } public MyException(SystemErrorType systemErrorType) { this.errorType = systemErrorType; }4.异常捕获@RestControllerAdvice@Slf4jpublic class GlobalExceptionHandlerAdvice extends DefaultGlobalExceptionHandlerAdvice { @ExceptionHandler(value = {MyException .class}) public Result MyException (MyException ex) { log.error(ex.getMessage()); return Result.fail(ex.getErrorType()); } @ExceptionHandler(value = {NotRoleException.class}) public Result NotRoleException(NotRoleException nle) { // 打印堆栈,以供调试 //nle.printStackTrace(); String message = "该功能仅供"+nle.getRole()+"使用!"; // 返回给前端 return Result.fail("090017",message,null); }}

也不是说只能通过枚举来返回,只要你的返回工具类支持参数填写,可以做类似于第二种的返回,但是这样方法对于返回的code来太好管理

5.在代码中抛异常

比如我做判空处理时,利用枚举作为参数返回

@PostMapping("/listQuestionVO") public Result listQuestionBankVO(@RequestBody QuestionBankQuery query){ if (query.getPageNum()==null || query.getPageSize()==null){ return Result.fail(QuestionnaireErrorType.PARAMETERISNULL_ERROR); } Result result = questionBankService.listQuestionBankVO(query); return result; }

实际上,你可以在你需要处理异常的地方直接throws异常,可以直接在方法上throws抛出,等待全局异常捕获

以上是"Java中如何实现Springboot全局异常处理"这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注行业资讯频道!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report