项目开发经验规范总结-时刻更新

2024-08-22 20:48

本文主要是介绍项目开发经验规范总结-时刻更新,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1、常用规范类

1.1、异常相关

1.1.1、业务异常类
package com.healerjean.proj.exception;import com.healerjean.proj.enums.ResponseEnum;/*** 系统业务异常*/
public class BusinessException extends RuntimeException {private int code;public BusinessException(int code) {this.code = code;}public BusinessException(String message) {super(message);this.code = ResponseEnum.逻辑错误.code;}public BusinessException(int code, String message) {super(message);this.code = code;}public BusinessException(ResponseEnum responseEnum) {super(responseEnum.msg);this.code = responseEnum.code ;}public BusinessException(ResponseEnum responseEnum,String message) {super(message);this.code = responseEnum.code ;}public BusinessException(String message, Throwable cause) {super(message, cause);this.code = ResponseEnum.逻辑错误.code;}public BusinessException(int code ,Throwable e) {super(e);this.code = code;}public BusinessException(ResponseEnum responseEnum, Throwable t) {super(responseEnum.msg, t);this.code = responseEnum.code;}public void setCode(int code) {this.code = code;}public int getCode() {return code;}}
1.1.2、参数异常类
package com.healerjean.proj.exception;import com.healerjean.proj.enums.ResponseEnum;/*** @author HealerJean* @ClassName ParameterErrorException* @date 2019/10/17  16:19.* @Description 参数错误*/
public class ParameterErrorException extends com.healerjean.proj.exception.BusinessException {public ParameterErrorException() {super(ResponseEnum.参数错误);}public ParameterErrorException(ResponseEnum responseEnum) {super(ResponseEnum.参数错误, responseEnum.msg);}public ParameterErrorException(String msg) {super(ResponseEnum.参数错误, msg);}}
1.1.3、接口异常类
package com.healerjean.proj.exception;import com.healerjean.proj.enums.ResponseEnum;/*** @author HealerJean* @ClassName HaoDanKuApiException* @date 2019/10/15  20:08.* @Description*/
public class HaoDanKuApiException extends BusinessException {public HaoDanKuApiException( ) {super(ResponseEnum.好单库口请求异常);}public HaoDanKuApiException(String msg) {super(ResponseEnum.好单库接口数据异常, msg);}public HaoDanKuApiException(Throwable e) {super(ResponseEnum.好单库口请求异常, e);}}
1.1.4、异常全局处理
package com.healerjean.proj.config;import com.healerjean.proj.dto.ResponseBean;
import com.healerjean.proj.enums.ResponseEnum;
import com.healerjean.proj.exception.BusinessException;
import com.healerjean.proj.exception.ParameterErrorException;
import com.healerjean.proj.utils.JsonUtils;
import lombok.extern.slf4j.Slf4j;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.http.converter.HttpMessageConversionException;
import org.springframework.validation.BindException;
import org.springframework.web.HttpRequestMethodNotSupportedException;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.method.annotation.MethodArgumentTypeMismatchException;import javax.servlet.http.HttpServletResponse;
import javax.validation.UnexpectedTypeException;
import java.util.HashMap;
import java.util.Map;/*** @author HealerJean* @version 1.0v* @ClassName ControllerHandleExceptionConfig* @date 2019/5/31  20:19.* @Description*/
@Slf4j
@ControllerAdvice
public class ControllerHandleConfig {/*** 不支持的请求方始*/@ExceptionHandler(value = HttpRequestMethodNotSupportedException.class)@ResponseStatus(value = HttpStatus.METHOD_NOT_ALLOWED)public ResponseBean methodNotSupportExceptionHandler(HttpRequestMethodNotSupportedException e) {log.error("不支持的请求方式", e);return ResponseBean.buildFailure(ResponseEnum.不支持的请求方式.code, e.getMessage());}/*** 参数类型错误* 1、(BindException : 比如 Integer 传入String  )* Field error in object 'demoDTO' on field 'age': rejected value [fasdf]; codes [typeMismatch.demoDTO.age,typeMismatch.age,typeMismatch.java.lang.Integer,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [demoDTO.age,age]; arguments []; default message [age]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.lang.Integer' for property 'age'; nested exception is java.lang.NumberFormatException: For input string: "fasdf"]*/@ExceptionHandler(value = {BindException.class})@ResponseStatus(HttpStatus.BAD_REQUEST)@ResponseBodypublic ResponseBean bindExceptionHandler(BindException e) {log.error("====参数类型错误===", e);return ResponseBean.buildFailure(ResponseEnum.参数类型错误.code, e.getMessage());}/*** 参数格式问题*/@ExceptionHandler(value = {MethodArgumentTypeMismatchException.class, HttpMessageConversionException.class, UnexpectedTypeException.class})@ResponseStatus(HttpStatus.BAD_REQUEST)@ResponseBodypublic ResponseBean httpMessageConversionExceptionHandler(Exception e) {log.error("====参数格式异常===", e);return ResponseBean.buildFailure(ResponseEnum.参数格式异常.code, e.getMessage());}/*** 参数错误*/@ExceptionHandler(value = ParameterErrorException.class)@ResponseStatus(HttpStatus.BAD_REQUEST)@ResponseBodypublic ResponseBean parameterErrorExceptionHandler(ParameterErrorException e) {log.error("参数异常------------参数错误:code:{},message:{}", e.getCode(), e.getMessage());return ResponseBean.buildFailure(e.getCode(), e.getMessage());}/*** 业务异常,给前台返回异常数据*/@ExceptionHandler(value = BusinessException.class)@ResponseStatus(HttpStatus.BAD_REQUEST)@ResponseBodypublic ResponseBean businessExceptionHandler(BusinessException e) {log.error("业务异常------------异常信息:code:{},message{}" ,e.getCode(), e.getMessage());return ResponseBean.buildFailure(e.getCode(),e.getMessage());}/*** 所有异常报错*/@ExceptionHandler@ResponseBodypublic HttpEntity<ResponseBean> allExceptionHandler(HttpServletResponse response, Exception e) {log.error("====系统错误===", e);response.setStatus(ResponseEnum.系统错误.code);return returnMessage(ResponseBean.buildFailure(ResponseEnum.系统错误));}private HttpEntity<ResponseBean> returnMessage(ResponseBean responseBean) {HttpHeaders header = new HttpHeaders();header.add("Content-Type", "application/json");header.add("Charset", "UTF-8");return new HttpEntity<>(responseBean, header);}/*** 参数非法* 1、(BindException : 比如 Integer 传入abc  )*/// @ExceptionHandler(value = {MethodArgumentTypeMismatchException.class, HttpRequestMethodNotSupportedException.class, HttpMessageConversionException.class, BindException.class, UnexpectedTypeException.class})// @ResponseBody// public HttpEntity<ResponseBean> httpMessageConversionExceptionHandler(HttpServletResponse response, Exception e) {//     log.error("====参数格式异常===", e);//     // 等同于 @ResponseStatus(HttpStatus.BAD_REQUEST)//     // 但是setStatus 不能比随便设置,最好一般情况下不要和HttpStatus 有重复的,这样有可能会造成没有输出Response body//     response.setStatus(ResponseEnum.参数格式异常.code);//     return returnMessage(ResponseBean.buildFailure(ResponseEnum.参数格式异常));// }// @ExceptionHandler(value ={HttpMessageConversionException.class, BindException.class} )// @ResponseBody// public HttpEntity<ResponseBean> httpMessageConversionExceptionHandler(Exception e) {//     log.error("====参数格式异常===", e);//     return new ResponseEntity<>(ResponseBean.buildFailure(ResponseEnum.参数格式异常),HttpStatus.BAD_REQUEST);// }}

这篇关于项目开发经验规范总结-时刻更新的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1097359

相关文章

Spring Boot + MyBatis Plus 高效开发实战从入门到进阶优化(推荐)

《SpringBoot+MyBatisPlus高效开发实战从入门到进阶优化(推荐)》本文将详细介绍SpringBoot+MyBatisPlus的完整开发流程,并深入剖析分页查询、批量操作、动... 目录Spring Boot + MyBATis Plus 高效开发实战:从入门到进阶优化1. MyBatis

Python基于wxPython和FFmpeg开发一个视频标签工具

《Python基于wxPython和FFmpeg开发一个视频标签工具》在当今数字媒体时代,视频内容的管理和标记变得越来越重要,无论是研究人员需要对实验视频进行时间点标记,还是个人用户希望对家庭视频进行... 目录引言1. 应用概述2. 技术栈分析2.1 核心库和模块2.2 wxpython作为GUI选择的优

一文教你如何将maven项目转成web项目

《一文教你如何将maven项目转成web项目》在软件开发过程中,有时我们需要将一个普通的Maven项目转换为Web项目,以便能够部署到Web容器中运行,本文将详细介绍如何通过简单的步骤完成这一转换过程... 目录准备工作步骤一:修改​​pom.XML​​1.1 添加​​packaging​​标签1.2 添加

tomcat多实例部署的项目实践

《tomcat多实例部署的项目实践》Tomcat多实例是指在一台设备上运行多个Tomcat服务,这些Tomcat相互独立,本文主要介绍了tomcat多实例部署的项目实践,具有一定的参考价值,感兴趣的可... 目录1.创建项目目录,测试文China编程件2js.创建实例的安装目录3.准备实例的配置文件4.编辑实例的

MySQL新增字段后Java实体未更新的潜在问题与解决方案

《MySQL新增字段后Java实体未更新的潜在问题与解决方案》在Java+MySQL的开发中,我们通常使用ORM框架来映射数据库表与Java对象,但有时候,数据库表结构变更(如新增字段)后,开发人员可... 目录引言1. 问题背景:数据库与 Java 实体不同步1.1 常见场景1.2 示例代码2. 不同操作

利用Python开发Markdown表格结构转换为Excel工具

《利用Python开发Markdown表格结构转换为Excel工具》在数据管理和文档编写过程中,我们经常使用Markdown来记录表格数据,但它没有Excel使用方便,所以本文将使用Python编写一... 目录1.完整代码2. 项目概述3. 代码解析3.1 依赖库3.2 GUI 设计3.3 解析 Mark

springboot集成Deepseek4j的项目实践

《springboot集成Deepseek4j的项目实践》本文主要介绍了springboot集成Deepseek4j的项目实践,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价... 目录Deepseek4j快速开始Maven 依js赖基础配置基础使用示例1. 流式返回示例2. 进阶

利用Go语言开发文件操作工具轻松处理所有文件

《利用Go语言开发文件操作工具轻松处理所有文件》在后端开发中,文件操作是一个非常常见但又容易出错的场景,本文小编要向大家介绍一个强大的Go语言文件操作工具库,它能帮你轻松处理各种文件操作场景... 目录为什么需要这个工具?核心功能详解1. 文件/目录存javascript在性检查2. 批量创建目录3. 文件

java常见报错及解决方案总结

《java常见报错及解决方案总结》:本文主要介绍Java编程中常见错误类型及示例,包括语法错误、空指针异常、数组下标越界、类型转换异常、文件未找到异常、除以零异常、非法线程操作异常、方法未定义异常... 目录1. 语法错误 (Syntax Errors)示例 1:解决方案:2. 空指针异常 (NullPoi

SpringBoot项目启动报错"找不到或无法加载主类"的解决方法

《SpringBoot项目启动报错找不到或无法加载主类的解决方法》在使用IntelliJIDEA开发基于SpringBoot框架的Java程序时,可能会出现找不到或无法加载主类com.example.... 目录一、问题描述二、排查过程三、解决方案一、问题描述在使用 IntelliJ IDEA 开发基于