springBoot基於Bean和Method參數校驗,捕捉異常


package com.wlb.jp.config;

import com.wlb.jp.utils.ReturnType;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.util.CollectionUtils;
import org.springframework.validation.BindException;
import org.springframework.validation.ObjectError;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseBody;

import javax.validation.ConstraintViolation;
import javax.validation.ConstraintViolationException;
import java.util.List;
import java.util.Set;


/**
 * 全局異常處理器
 */
@ControllerAdvice
public class GlobalExceptionHandler {

    private Logger logger = LoggerFactory.getLogger(GlobalExceptionHandler.class);

    /**
     * 用來處理method validation異常
     * @param ex
     * @return
     */
    @ExceptionHandler(ConstraintViolationException.class)
    @ResponseBody
    public ReturnType resolveConstraintViolationException(ConstraintViolationException ex){
        String code = "";
        String msg = "";
        Object value = "";
        ReturnType returnType = new ReturnType(code, msg, value);

        Set<ConstraintViolation<?>> constraintViolations = ex.getConstraintViolations();
        if(!CollectionUtils.isEmpty(constraintViolations)) {
            StringBuilder msgBuilder = new StringBuilder();
            for(ConstraintViolation constraintViolation :constraintViolations){
                msgBuilder.append(constraintViolation.getMessage()).append(",");
            }
            String errorMessage = msgBuilder.toString();
            if (errorMessage.length() > 1) {
                errorMessage = errorMessage.substring(0, errorMessage.length() - 1);
            }
            returnType.setMsg(errorMessage);
            return returnType;
        }
        returnType.setMsg(ex.getMessage());
        return returnType;
    }


    /**
     * 用來處理bean validation異常
     * @param ex
     * @return
     */
//    @ExceptionHandler(MethodArgumentNotValidException.class)
    @ExceptionHandler(BindException.class)
    @ResponseBody
    public ReturnType resolveMethodArgumentNotValidException(BindException ex){
        String code = "";
        String msg = "";
        Object value = "";
        ReturnType returnType = new ReturnType(code, msg, value);

        List<ObjectError> objectErrors = ex.getBindingResult().getAllErrors();
        if(!CollectionUtils.isEmpty(objectErrors)) {
            StringBuilder msgBuilder = new StringBuilder();
            for (ObjectError objectError : objectErrors) {
                msgBuilder.append(objectError.getDefaultMessage()).append(",");
            }
            String errorMessage = msgBuilder.toString();
            if (errorMessage.length() > 1) {
                errorMessage = errorMessage.substring(0, errorMessage.length() - 1);
            }
            returnType.setMsg(errorMessage);
            return returnType;
        }
        returnType.setMsg(ex.getMessage());
        return returnType;
    }
}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM