Spring Boot2.0之全局捕获异常详解编程语言

全局捕获异常,很明显的错误404返回给客户,很不好呀。整个web请求项目全局捕获异常,比如空指针直接返回给客户啊,那多操蛋呀~

 

看这几个常用的注解:

@ExceptionHandler 表示拦截异常

  • @ControllerAdvice 是 controller 的一个辅助类,最常用的就是作为全局异常处理的切面类
  • @ControllerAdvice 可以指定扫描范围
  • @ControllerAdvice 约定了几种可行的返回值,如果是直接返回 model 类的话,需要使用 @ResponseBody 进行 json 转换
  • 返回 String,表示跳到某个 view
  • 返回 modelAndView
  • 返回 model + @ResponseBody

创建meven工程。pom:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 
  <modelVersion>4.0.0</modelVersion> 
  <groupId>ErrorCatch</groupId> 
  <artifactId>com.toov5.ErrorCatch</artifactId> 
  <version>0.0.1-SNAPSHOT</version> 
   
  <parent> 
		<groupId>org.springframework.boot</groupId> 
		<artifactId>spring-boot-starter-parent</artifactId> 
		<version>2.0.0.RELEASE</version> 
	</parent> 
	<dependencies> 
		<dependency> 
			<groupId>org.springframework.boot</groupId> 
			<artifactId>spring-boot-starter-web</artifactId> 
		</dependency> 
	</dependencies>  
   
</project> 

 Java类

package com.toov5.ErrorCatch; 
 
import org.springframework.web.bind.annotation.RequestMapping; 
import org.springframework.web.bind.annotation.RestController; 
 
@RestController 
//以后经常做为服务异常捕获,要经常用到这个注解 
public class ErrorCatch { 
    @RequestMapping("/getUser") 
    public String getUser(int i ){ 
        int j = 1/i; 
        return "返回"+j; 
         
    } 
     
}

项目目录结构:

Spring Boot2.0之全局捕获异常详解编程语言

启动,访问:

Spring Boot2.0之全局捕获异常详解编程语言

Spring Boot2.0之全局捕获异常详解编程语言

图2丑陋的页面出来了,用户体验很瞎眼(这算是个用户体验哈)~~

解决方案1: try catch 

public class ErrorCatch { 
    @RequestMapping("/getUser") 
    public String getUser(int i ){ 
        int j = 0; 
        try { 
             j = 1/i; 
             
        } catch (Exception e) { 
            return "不好意思啊客户!~"; 
        } 
         
        return "返回"+j; 
    } 
     
}

Spring Boot2.0之全局捕获异常详解编程语言

如果每个错误,都要这样。。。。。那不蛋疼了啊~开发可要累死了

解决方案二 全局捕获异常   

 使用aop技术,采用异常通知

Spring Boot提供了支持,

首先建立一个类型,专门用来处理异常的

废话不多说,实战!

首先创建一个包 error(用来放异常捕获类的)

然后创建异常捕获类:

  1、返回json格式

  2、返回页面

首先创建类:

package com.toov5.error; 
 
import java.util.HashMap; 
import java.util.Map; 
 
import org.springframework.web.bind.annotation.ControllerAdvice; 
import org.springframework.web.bind.annotation.ExceptionHandler; 
import org.springframework.web.bind.annotation.ResponseBody; 
 
@ControllerAdvice(basePackages="com.toov5.ErrorCatch")  //SpringBoot的异常切入点。此包下的包揽了哈 
public class GlobalException { 
 
   @ResponseBody  //返回jsoon给客户端 
   public Map<String, Object> exceptionHandler(){ 
       Map<String, Object> map = new HashMap<String, Object>(); 
       map.put("errorCode", "666"); 
       map.put("errorMsg", "不好意思啊"); 
       return map; 
        
   } 
     
     
}

 @ExceptionHandler(RuntimeException.class) 这个注解表示运行时异常

注意 原java类文件去掉try catch

package com.toov5.ErrorCatch; 
 
import org.springframework.web.bind.annotation.RequestMapping; 
import org.springframework.web.bind.annotation.RestController; 
 
@RestController //以后经常做微服务异常捕获,要经常用到这个注解 
public class ErrorCatch { 
    @RequestMapping("/getUser") 
    public String getUser(int i ){ 
        int j = 1/i;     
        return "返回"+j; 
    } 
      
}

小伙伴们注意了啊~~~

我在给大家写教程时候,发现了一个小问题,初学者们要注意了哦~!

@controlleradvice注解不起作用,Spring要扫描到!我这里的之前的目录结构不更改的前提下:

应该这样:

Spring Boot2.0之全局捕获异常详解编程语言

一定要把 

GlobalException这个类扫到呀!!!

重启后,访问:
Spring Boot2.0之全局捕获异常详解编程语言

 

 

 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/16172.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论