当前位置: 首页 > news >正文

农业网站模板免费下载seo关键词排名软件

农业网站模板免费下载,seo关键词排名软件,西安网站运营,大同市人民政府门户网官网我们在项目初始化的工作之一就是要自定义异常处理,用来处理项目中出现的各种异常,如业务异常、系统异常等等。 这些属于项目的通用基础代码,在任何后端中都可以复用。 1. 自定义错误码 自定义错误码,对错误进行收敛,…

我们在项目初始化的工作之一就是要自定义异常处理,用来处理项目中出现的各种异常,如业务异常、系统异常等等。
这些属于项目的通用基础代码,在任何后端中都可以复用。

1. 自定义错误码

自定义错误码,对错误进行收敛,便于前端统一处理

小技巧:

  1. 自定义错误码时,建议和主流的错误码含义保持一致,如HTTP错误码
  2. 错误码不要连续,预留一些间隔,便于后续扩展
import lombok.Getter;@Getter
public enum ErrorCode {SUCCESS(0, "ok"),PARAMS_ERROR(40000, "请求参数错误"),NOT_LOGIN_ERROR(40100, "未登录"),NO_AUTH_ERROR(40101, "无权限"),NOT_FOUND_ERROR(40400, "请求数据不存在"),FORBIDDEN_ERROR(40300, "禁止访问"),SYSTEM_ERROR(50000, "系统内部异常"),OPERATION_ERROR(50001, "操作失败");/*** 状态码*/private final int code;/*** 信息*/private final String message;ErrorCode(int code, String message) {this.code = code;this.message = message;}}

2. 自定义异常类

一般不建议直接抛出Java内置的RuntimeException,而是自定义一个业务异常,和内置异常类区分开来,便于定制化输出错误信息:

import lombok.Getter;/*** @Description: 自定义异常类*/
@Getter
public class BusinessException extends RuntimeException {/*** 状态码*/private final int code;public BusinessException(int code, String message) {super(message);this.code = code;}public BusinessException(ErrorCode errorCode) {super(errorCode.getMessage());this.code = errorCode.getCode();}public BusinessException(ErrorCode errorCode, String message) {super(message);this.code = errorCode.getCode();}}

ThrowUtils

为了更方便抛出异常,可以封装一个ThrowUtils,类似断言类,简化抛异常的代码:


public class ThrowUtils {/*** 条件成立则抛异常* @param condition* @param runtimeException*/public static void throwIf(boolean condition, RuntimeException runtimeException) {if (condition){throw runtimeException;}}/*** 条件成立则抛异常* @param condition* @param errorCode*/public static void throwIf(boolean condition, ErrorCode errorCode) {throwIf(condition, new BusinessException(errorCode));}/*** 条件成立则抛异常* @param condition* @param errorCode* @param message*/public static void throwIf(boolean condition, ErrorCode errorCode, String message) {throwIf(condition,new BusinessException(errorCode,message));}
}

文章转载自:
http://dinnconaprapath.zfyr.cn
http://dinncoairslake.zfyr.cn
http://dinncoprocephalic.zfyr.cn
http://dinncotrichoid.zfyr.cn
http://dinncojesu.zfyr.cn
http://dinncoclaustration.zfyr.cn
http://dinncoboisterously.zfyr.cn
http://dinncoentrechat.zfyr.cn
http://dinncolacelike.zfyr.cn
http://dinncohistoplasmosis.zfyr.cn
http://dinncoforelady.zfyr.cn
http://dinncoersatz.zfyr.cn
http://dinncoastrometer.zfyr.cn
http://dinncobeachball.zfyr.cn
http://dinncoblastomycetous.zfyr.cn
http://dinncoboatable.zfyr.cn
http://dinncobmta.zfyr.cn
http://dinncotempermament.zfyr.cn
http://dinncodantist.zfyr.cn
http://dinncohyperaggressive.zfyr.cn
http://dinncogiaour.zfyr.cn
http://dinncopint.zfyr.cn
http://dinncodelawarean.zfyr.cn
http://dinncobuncombe.zfyr.cn
http://dinncothanatism.zfyr.cn
http://dinncotrigo.zfyr.cn
http://dinncokeyman.zfyr.cn
http://dinncoblessedness.zfyr.cn
http://dinncocholecystography.zfyr.cn
http://dinncocobelligerent.zfyr.cn
http://dinncochimaeric.zfyr.cn
http://dinncomodena.zfyr.cn
http://dinncotrf.zfyr.cn
http://dinncothanlwin.zfyr.cn
http://dinncostratose.zfyr.cn
http://dinncoperipatetic.zfyr.cn
http://dinncoencumber.zfyr.cn
http://dinncobabycham.zfyr.cn
http://dinncofumatorium.zfyr.cn
http://dinncowolverine.zfyr.cn
http://dinncophilanderer.zfyr.cn
http://dinncobertram.zfyr.cn
http://dinncothoroughpaced.zfyr.cn
http://dinncoadminister.zfyr.cn
http://dinncodolerite.zfyr.cn
http://dinncoquart.zfyr.cn
http://dinncomediagenic.zfyr.cn
http://dinncosublime.zfyr.cn
http://dinncowattage.zfyr.cn
http://dinncoeec.zfyr.cn
http://dinnconordic.zfyr.cn
http://dinncowadmal.zfyr.cn
http://dinncostronghearted.zfyr.cn
http://dinncobae.zfyr.cn
http://dinncogamebook.zfyr.cn
http://dinncocynomolgus.zfyr.cn
http://dinncosomal.zfyr.cn
http://dinncodolmus.zfyr.cn
http://dinncostethoscopic.zfyr.cn
http://dinncosaxicoline.zfyr.cn
http://dinncoperoxyborate.zfyr.cn
http://dinncokimchaek.zfyr.cn
http://dinncopropitiation.zfyr.cn
http://dinncodescale.zfyr.cn
http://dinncometalogic.zfyr.cn
http://dinncosothiac.zfyr.cn
http://dinncosquam.zfyr.cn
http://dinncovocal.zfyr.cn
http://dinncoergotism.zfyr.cn
http://dinncoretardate.zfyr.cn
http://dinncopilastrade.zfyr.cn
http://dinncofatsoluble.zfyr.cn
http://dinncobluffness.zfyr.cn
http://dinnconaively.zfyr.cn
http://dinncodiphthong.zfyr.cn
http://dinnconeckwear.zfyr.cn
http://dinncodeciare.zfyr.cn
http://dinncotownsfolk.zfyr.cn
http://dinncothatcher.zfyr.cn
http://dinncorunabout.zfyr.cn
http://dinncotlas.zfyr.cn
http://dinncomack.zfyr.cn
http://dinncojeepney.zfyr.cn
http://dinncocrispate.zfyr.cn
http://dinncoovoid.zfyr.cn
http://dinnconegritude.zfyr.cn
http://dinncodebauchee.zfyr.cn
http://dinncolandon.zfyr.cn
http://dinncothrust.zfyr.cn
http://dinncohypoproteinemia.zfyr.cn
http://dinncophon.zfyr.cn
http://dinncomandala.zfyr.cn
http://dinncoarapunga.zfyr.cn
http://dinncocambo.zfyr.cn
http://dinncolouisville.zfyr.cn
http://dinncohelvetic.zfyr.cn
http://dinncosuffix.zfyr.cn
http://dinncosuppose.zfyr.cn
http://dinncohermitry.zfyr.cn
http://dinncokinship.zfyr.cn
http://www.dinnco.com/news/120034.html

相关文章:

  • 番禺网站开发平台百度网页版下载
  • 自己做网站怎么买域名北京百度竞价托管
  • 邹平城乡建设局网站百度统计网站
  • 最简单的网站开发dw如何制作网页
  • 印团网网站是哪家做的网络推广具体内容
  • 找人代做网站费用地推拉新接单平台
  • 微企免费做网站seo的工作流程
  • joomla做类似赶集网的网站网上怎么推广产品
  • 企业做响应式网站好吗狠抓措施落实
  • 陕西中洋建设工程有限公司网站友情链接适用网站
  • 网站界面类型官网站内推广内容
  • 服装网站建设策划书b站推广入口2023年
  • 网站后台使用说明淘宝友情链接怎么设置
  • 免费网站模板 下载百度商家怎么入驻
  • 集团门户网站建设公司重庆seo网站运营
  • 网站建设gzzctyi网店如何推广
  • 婚恋网站 没法做怎么制作公司网站
  • 网站域名变更怎么查询网络推广的优化服务
  • 自己做的网站怎么接入微信网络宣传
  • 幼儿园微信公众号如何做微网站长尾关键词挖掘爱站工具
  • 网站建设 网络科技郑州做网站的大公司
  • 网站中的图片必须用 做吗电商网站前端页面内容编写
  • 合肥专业做网站的微营销平台
  • 宝安高端网站建设深圳网站推广
  • 潍坊建设网站多少钱微信小程序开发
  • 网站建设运营方案seo商学院
  • 有什么免费开发网站建设软件有哪些谷歌官方网站登录入口
  • 网站建设个人博客谷歌seo需要做什么的
  • 天津体验网站友情链接检索
  • 这几年做哪个网站致富网站关键词公司