当前位置:首页 > 文章列表 > 文章 > java教程 > Spring Boot 中的异常处理

Spring Boot 中的异常处理

来源:dev.to 2024-07-25 08:36:52 0浏览 收藏

从现在开始,努力学习吧!本文《Spring Boot 中的异常处理》主要讲解了等等相关知识点,我会在golang学习网中持续更新相关的系列文章,欢迎大家关注并积极留言建议。下面就先一起来看一下本篇正文内容吧,希望能帮到你!

Spring Boot 中的异常处理

异常处理是构建健壮且用户友好的应用程序的关键部分。在 spring boot 中,我们可以通过多种方式处理异常,以确保我们的应用程序保持稳定并向用户提供有意义的反馈。本指南将涵盖异常处理的不同策略,包括自定义异常、全局异常处理、验证错误和生产最佳实践。

1. 异常处理基础知识

异常是扰乱程序正常流程的事件。它们可以分为:

  • checked exceptions: 在编译时检查的异常。
  • unchecked exceptions(运行时异常): 运行时发生的异常。
  • 错误: 应用程序不应处理的严重问题,例如 outofmemoryerror。

2. 自定义异常类

创建自定义异常类有助于处理应用程序中的特定错误情况。

package com.example.springbootrefresher.exception;

public class departmentnotfoundexception extends runtimeexception {
    public departmentnotfoundexception(string message) {
        super(message);
    }
}

3. 控制器中的异常处理

@exceptionhandler 注释:
您可以在控制器类中定义处理异常的方法。

package com.example.springbootrefresher.controller;

import com.example.springbootrefresher.exception.departmentnotfoundexception;
import org.springframework.http.httpstatus;
import org.springframework.http.responseentity;
import org.springframework.web.bind.annotation.exceptionhandler;
import org.springframework.web.bind.annotation.getmapping;
import org.springframework.web.bind.annotation.restcontroller;

@restcontroller
public class departmentcontroller {

    @getmapping("/department")
    public string getdepartment() {
        // simulate an exception
        throw new departmentnotfoundexception("department not found!");
    }

    @exceptionhandler(departmentnotfoundexception.class)
    public responseentity handledepartmentnotfoundexception(departmentnotfoundexception ex) {
        return new responseentity<>(ex.getmessage(), httpstatus.not_found);
    }
}

4. 使用@controlleradvice进行全局异常处理

要全局处理异常,可以使用@controlleradvice和集中式异常处理程序。

package com.example.springbootrefresher.error;

import com.example.springbootrefresher.entity.errormessage;
import com.example.springbootrefresher.exception.departmentnotfoundexception;
import org.springframework.http.httpstatus;
import org.springframework.http.responseentity;
import org.springframework.web.bind.annotation.controlleradvice;
import org.springframework.web.bind.annotation.exceptionhandler;
import org.springframework.web.bind.annotation.responsestatus;
import org.springframework.web.context.request.webrequest;
import org.springframework.web.servlet.mvc.method.annotation.responseentityexceptionhandler;

@controlleradvice
@responsestatus
public class customresponseentityexceptionhandler extends responseentityexceptionhandler {

    @exceptionhandler(departmentnotfoundexception.class)
    public responseentity handledepartmentnotfoundexception(departmentnotfoundexception exception, webrequest request) {
        errormessage message = new errormessage(
                httpstatus.not_found.value(),
                exception.getmessage(),
                request.getdescription(false)
        );

        return responseentity.status(httpstatus.not_found)
                .body(message);
    }

    @exceptionhandler(exception.class)
    public responseentity handleglobalexception(exception exception, webrequest request) {
        errormessage message = new errormessage(
                httpstatus.internal_server_error.value(),
                exception.getmessage(),
                request.getdescription(false)
        );

        return responseentity.status(httpstatus.internal_server_error)
                .body(message);
    }
}

5. 创建标准错误响应

定义标准错误响应类来构建错误消息。

package com.example.springbootrefresher.entity;

public class errormessage {
    private int statuscode;
    private string message;
    private string description;

    public errormessage(int statuscode, string message, string description) {
        this.statuscode = statuscode;
        this.message = message;
        this.description = description;
    }

    // getters and setters

    public int getstatuscode() {
        return statuscode;
    }

    public void setstatuscode(int statuscode) {
        this.statuscode = statuscode;
    }

    public string getmessage() {
        return message;
    }

    public void setmessage(string message) {
        this.message = message;
    }

    public string getdescription() {
        return description;
    }

    public void setdescription(string description) {
        this.description = description;
    }
}

6. 处理验证错误

spring boot 与 bean validation (jsr-380) 集成良好。要全局处理验证错误,请使用@controlleradvice。

package com.example.springbootrefresher.error;

import org.springframework.http.httpstatus;
import org.springframework.http.responseentity;
import org.springframework.validation.fielderror;
import org.springframework.web.bind.methodargumentnotvalidexception;
import org.springframework.web.bind.annotation.controlleradvice;
import org.springframework.web.bind.annotation.exceptionhandler;
import org.springframework.web.bind.annotation.responsestatus;
import org.springframework.web.context.request.webrequest;
import java.util.hashmap;
import java.util.map;

@controlleradvice
@responsestatus
public class validationexceptionhandler extends responseentityexceptionhandler {

    @exceptionhandler(methodargumentnotvalidexception.class)
    public responseentity> handlevalidationexceptions(methodargumentnotvalidexception ex) {
        map errors = new hashmap<>();
        ex.getbindingresult().getallerrors().foreach((error) -> {
            string fieldname = ((fielderror) error).getfield();
            string errormessage = error.getdefaultmessage();
            errors.put(fieldname, errormessage);
        });
        return new responseentity<>(errors, httpstatus.bad_request);
    }
}

7. 使用@responsestatus处理简单异常

对于简单的情况,可以用@responsestatus注解异常类来指定http状态码。

package com.example.SpringBootRefresher.exception;

import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;

@ResponseStatus(HttpStatus.NOT_FOUND)
public class DepartmentNotFoundException extends RuntimeException {
    public DepartmentNotFoundException(String message) {
        super(message);
    }
}

8. 生产最佳实践

  1. 一致的错误响应:确保您的应用程序返回一致且结构化的错误响应。使用标准错误响应类。
  2. 日志记录: 记录异常以用于调试和监控目的。确保敏感信息不会在日志中暴露。
  3. 用户友好的消息:提供用户友好的错误消息。避免向用户暴露内部细节或堆栈跟踪。
  4. 安全: 请谨慎对待错误响应中包含的信息,以免暴露敏感数据。
  5. 文档: 为您的团队和未来的维护人员记录您的异常处理策略。

概括

spring boot 中的异常处理涉及使用 @exceptionhandler、@controlleradvice 和 @responsestatus 等注释来有效地管理错误。通过创建自定义异常、处理验证错误并遵循最佳实践,您可以构建强大的应用程序,以优雅地处理错误并向用户提供有意义的反馈。使用 java 17 功能可确保您的应用程序利用 java 生态系统中的最新改进。

本篇关于《Spring Boot 中的异常处理》的介绍就到此结束啦,但是学无止境,想要了解学习更多关于文章的相关知识,请关注golang学习网公众号!

版本声明
本文转载于:dev.to 如有侵犯,请联系study_golang@163.com删除
Python - 索引和切片Python - 索引和切片
上一篇
Python - 索引和切片
AVL树时间复杂度分析
下一篇
AVL树时间复杂度分析
查看更多
最新文章
查看更多
课程推荐
  • 前端进阶之JavaScript设计模式
    前端进阶之JavaScript设计模式
    设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
    542次学习
  • GO语言核心编程课程
    GO语言核心编程课程
    本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
    508次学习
  • 简单聊聊mysql8与网络通信
    简单聊聊mysql8与网络通信
    如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
    497次学习
  • JavaScript正则表达式基础与实战
    JavaScript正则表达式基础与实战
    在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
    487次学习
  • 从零制作响应式网站—Grid布局
    从零制作响应式网站—Grid布局
    本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
    484次学习
查看更多
AI推荐
  • 可图AI图片生成:快手可灵AI2.0引领图像创作新时代
    可图AI图片生成
    探索快手旗下可灵AI2.0发布的可图AI2.0图像生成大模型,体验从文本生成图像、图像编辑到风格转绘的全链路创作。了解其技术突破、功能创新及在广告、影视、非遗等领域的应用,领先于Midjourney、DALL-E等竞品。
    3次使用
  • MeowTalk喵说:AI猫咪语言翻译,增进人猫情感交流
    MeowTalk喵说
    MeowTalk喵说是一款由Akvelon公司开发的AI应用,通过分析猫咪的叫声,帮助主人理解猫咪的需求和情感。支持iOS和Android平台,提供个性化翻译、情感互动、趣味对话等功能,增进人猫之间的情感联系。
    3次使用
  • SEO标题Traini:全球首创宠物AI技术,提升宠物健康与行为解读
    Traini
    SEO摘要Traini是一家专注于宠物健康教育的创新科技公司,利用先进的人工智能技术,提供宠物行为解读、个性化训练计划、在线课程、医疗辅助和个性化服务推荐等多功能服务。通过PEBI系统,Traini能够精准识别宠物狗的12种情绪状态,推动宠物与人类的智能互动,提升宠物生活质量。
    3次使用
  • 可图AI 2.0:快手旗下新一代图像生成大模型,专业创作者与普通用户的多模态创作引擎
    可图AI 2.0图片生成
    可图AI 2.0 是快手旗下的新一代图像生成大模型,支持文本生成图像、图像编辑、风格转绘等全链路创作需求。凭借DiT架构和MVL交互体系,提升了复杂语义理解和多模态交互能力,适用于广告、影视、非遗等领域,助力创作者高效创作。
    13次使用
  • 毕业宝AIGC检测:AI生成内容检测工具,助力学术诚信
    毕业宝AIGC检测
    毕业宝AIGC检测是“毕业宝”平台的AI生成内容检测工具,专为学术场景设计,帮助用户初步判断文本的原创性和AI参与度。通过与知网、维普数据库联动,提供全面检测结果,适用于学生、研究者、教育工作者及内容创作者。
    24次使用
微信登录更方便
  • 密码登录
  • 注册账号
登录即同意 用户协议隐私政策
返回登录
  • 重置密码