时间:2021-05-19
springboot中抛出异常,springboot自带的是springmvc框架,这个就不多说了。
springmvc统一异常解决方法这里要说明的是。只是结合了springboot的使用而已。直接上代码,有效有用的才是ok。
1.定义异常捕获
package com.example.rest.error;import org.springframework.http.HttpStatus;import org.springframework.web.bind.annotation.ExceptionHandler;import org.springframework.web.bind.annotation.ResponseStatus;import org.springframework.web.bind.annotation.RestControllerAdvice;import org.springframework.web.servlet.NoHandlerFoundException;import javax.validation.ConstraintViolationException;/** * * @author ming 定义全局异常处理 * @RestControllerAdvice 是@controlleradvice 与@ResponseBody 的组合注解 */@RestControllerAdvice public class GlobalControllerExceptionHandler { @ExceptionHandler(value = { ConstraintViolationException.class }) @ResponseStatus(HttpStatus.BAD_REQUEST) public ApiErrorResponse constraintViolationException(ConstraintViolationException ex) { return new ApiErrorResponse(500, 5001, ex.getMessage()); } @ExceptionHandler(value = { IllegalArgumentException.class }) @ResponseStatus(HttpStatus.BAD_REQUEST) public ApiErrorResponse IllegalArgumentException(IllegalArgumentException ex) { return new ApiErrorResponse(501, 5002, ex.getMessage()); } @ExceptionHandler(value = { NoHandlerFoundException.class }) @ResponseStatus(HttpStatus.NOT_FOUND) public ApiErrorResponse noHandlerFoundException(Exception ex) { return new ApiErrorResponse(404, 4041, ex.getMessage()); } @ExceptionHandler(value = { Exception.class }) @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR) public ApiErrorResponse unknownException(Exception ex) { return new ApiErrorResponse(500, 5002, ex.getMessage()); }}2.定义一个返回对象
package com.example.rest.error;/** * @author ming */public class ApiErrorResponse { private int status; private int code; private String message; public ApiErrorResponse(int status, int code, String message) { this.status = status; this.code = code; this.message = message; } public int getStatus() { return status; } public int getCode() { return code; } public String getMessage() { return message; } @Override public String toString() { return "ApiErrorResponse{" + "status=" + status + ", code=" + code + ", message=" + message + '}'; }}3.定义一个启动Application
package com.example;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.web.servlet.config.annotation.EnableWebMvc;@SpringBootApplication@EnableWebMvc public class SpringBootExceptionHandlingApplication { public static void main(String[] args) { SpringApplication.run(SpringBootExceptionHandlingApplication.class, args); }}4.最后一个测试类
package com.example.rest.controller;import org.springframework.http.MediaType;import org.springframework.util.Assert;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.RestController;import javax.validation.ConstraintViolationException;import java.util.Collections;/** * @author ming */@RestControllerpublic class TestController { @GetMapping(value = "/test", produces = MediaType.APPLICATION_JSON_VALUE) public void test(Long id) { Assert.notNull(id,"id不能为空!"); throw new ConstraintViolationException("error", Collections.emptySet()); }}注意application.properties这个文件的配置
spring.mvc.throw-exception-if-no-handler-found=trueok,springboot中解决springmvc异常抛出就可以这样解决了。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文首先将会回顾Spring5之前的SpringMVC异常处理机制,然后主要讲解SpringBoot2Webflux的全局异常处理机制。SpringMVC的异常
目录无SpringMVC全局异常时的流程图SpringMVC全局异常流程图其实是一个ModelAndView对象配置文件applicationcontext.x
为什么需要全局异常处理在传统SpringBoot应用中,我们@ControllerAdvice来处理全局的异常,进行统一包装返回//摘至springclouda
前言在SpringMVC中,当一个请求发生异常(Controller抛出一个异常时),DispatcherServlet采用委托的方式交给一个处理链来处理或者解
我当初学java异常处理的时候,对于父子异常的处理,我记得几句话“子类方法只能抛出父类方法所抛出的异常或者是其子异常,子类构造器必须要抛出父类构造器的异常或者其