• @ControllerAdvice + @ExceptionHandler 处理 全部Controller层异常


    对于与数据库相关的 Spring MVC 项目,我们通常会把 事务 配置在 Service层,当数据库操作失败时让 Service 层抛出运行时异常,Spring 事物管理器就会进行回滚。

    如此一来,我们的 Controller 层就不得不进行 try-catch Service 层的异常,否则会返回一些不友好的错误信息到客户端。但是,Controller 层每个方法体都写一些模板化的 try-catch 的代码,很难看也难维护,特别是还需要对 Service 层的不同异常进行不同处理的时候。例如以下 Controller 方法代码(非常难看且冗余):

        @PostMapping("/uppic1")
        @ResponseBody
        public JsonResponse uppic1(@RequestParam("file1") MultipartFile file1) throws Exception {
            JsonResponse jr=null;
            FastDFSClient client = new FastDFSClient(fdfs_client);
            String extName = file1.getOriginalFilename().substring(file1.getOriginalFilename().lastIndexOf(".")+1);
            String path = null;
            try {
                path = client.uploadFile(file1.getBytes(),extName,null);
                jr=new JsonResponse(1,"操作成功",file_server+path);
            } catch (Exception e) {
                jr=new JsonResponse(0,"操作失败",path);
                e.printStackTrace();
            }
            return jr;
        }

    使用ControllerAdvice :

    @ControllerAdvice
    public class GlobalExceptionHandler {
    
        @ExceptionHandler(Exception.class)
        @ResponseBody
        JsonResponse handleException(){
            JsonResponse jr=new JsonResponse(1,"服务器异常!");
            return jr;
        }
    }

    这样所有controller层的异常都会返回这样的提示了。

  • 相关阅读:
    反素数(暴力)
    More Divisors(反素数)
    CodeForces
    Binary Tree(二叉树+思维)
    Friendship of Frog(水题)
    内网jenkins如何配置gitlab自动拉取代码打包
    配置git使用ssh方式克隆gitlab的代码
    centOS7创建python虚拟环境
    CentOS7下安装JDK
    centOS安装python3 以及解决 导入ssl包出错的问题
  • 原文地址:https://www.cnblogs.com/jiangwz/p/8589506.html
Copyright © 2020-2023  润新知