unified-dispose-springboot

Unified Dispose Springboot

License

License

GroupId

GroupId

com.purgeteam
ArtifactId

ArtifactId

unified-dispose-springboot
Last Version

Last Version

0.1.3.RELEASE
Release Date

Release Date

Type

Type

pom
Description

Description

unified-dispose-springboot
Unified Dispose Springboot
Project URL

Project URL

https://github.com/purgeteam/unified-dispose-springboot
Source Code Management

Source Code Management

https://github.com/purgeteam/unified-dispose-springboot

Download unified-dispose-springboot

How to add to project

<!-- https://jarcasting.com/artifacts/com.purgeteam/unified-dispose-springboot/ -->
<dependency>
    <groupId>com.purgeteam</groupId>
    <artifactId>unified-dispose-springboot</artifactId>
    <version>0.1.3.RELEASE</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/com.purgeteam/unified-dispose-springboot/
implementation 'com.purgeteam:unified-dispose-springboot:0.1.3.RELEASE'
// https://jarcasting.com/artifacts/com.purgeteam/unified-dispose-springboot/
implementation ("com.purgeteam:unified-dispose-springboot:0.1.3.RELEASE")
'com.purgeteam:unified-dispose-springboot:pom:0.1.3.RELEASE'
<dependency org="com.purgeteam" name="unified-dispose-springboot" rev="0.1.3.RELEASE">
  <artifact name="unified-dispose-springboot" type="pom" />
</dependency>
@Grapes(
@Grab(group='com.purgeteam', module='unified-dispose-springboot', version='0.1.3.RELEASE')
)
libraryDependencies += "com.purgeteam" % "unified-dispose-springboot" % "0.1.3.RELEASE"
[com.purgeteam/unified-dispose-springboot "0.1.3.RELEASE"]

Dependencies

provided (1)

Group / Artifact Type Version
org.springframework.boot : spring-boot-configuration-processor Optional jar

Project Modules

  • unified-dispose-springboot-starter
  • unifed-dispose-demo

unified-dispose-springboot-starter

Maven Central License License License License

🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀

🔥 🔥 🔥 相关文档请访问 PurgeTeam docs 🔥 🔥 🔥

新版项目已经迁移为:请访问使用 spirng-cloud-purgeteam

🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀 🚀

简介

重复功能我来写。在 SpringBoot 项目里都有全局异常处理以及返回包装等,返回前端是带上succcodemsgdata等字段。单个项目情况下很好解决,当微服务模块多的情况下,很多情况开发都是复制原有代码进行构建另外一个项目的,导致这些功能升级需要修改多个服务,在这个基础上,我们封装了一个组件 unified-dispose-springboot-starter 里面包含了一些基础的异常处理以及返回包装功能。

依赖添加启动功能

添加依赖 ps: 实际version版本请使用最新版 最新版本: Maven Central

点击查看最新新版本

<dependency>
  <groupId>com.purgeteam</groupId>
  <artifactId>unified-dispose-springboot-starter</artifactId>
  <version>0.1.1.RELEASE</version>
</dependency>

启动类添加 @EnableGlobalDispose 注解开启以下功能。

@EnableGlobalDispose
@SpringBootApplication
public class GlobalDisposeSpringBootApplication {

  public static void main(String[] args) {
    SpringApplication.run(GlobalDisposeSpringBootApplication.class, args);
  }

}

One 异常处理 ⚠️

在项目中经常出现系统异常的情况,比如NullPointerException等等。如果默认未处理的情况下,springboot会响应默认的错误提示,这样对用户体验不是友好,系统层面的错误,用户不能感知到,即使为500的错误,可以给用户提示一个类似服务器开小差的友好提示等。

模块里以及包含了一些基本的异常处理方式(及不需要做任何代码编写已经具有基本异常处理),以及一些常见的异常code,用户只需要关心业务异常处理即可,直接通过 throw new 异常 的方式抛出即可。

异常处理包含类型

# 通用500异常
Exception 类捕获 500 异常处理

# Feign 异常
FeignException 类捕获
ClientException 类捕获

# 业务自定义
BusinessException 类捕获 业务通用自定义异常

# 参数校验异常
HttpMessageNotReadableException 参数错误异常
BindException 参数错误异常

程序主动抛出异常

throw new BusinessException(BusinessErrorCode.BUSINESS_ERROR);
// 或者
throw new BusinessException("CLOUD800","没有多余的库存");

通常不建议直接抛出通用的BusinessException异常,应当在对应的模块里添加对应的领域的异常处理类以及对应的枚举错误类型。

如会员模块: 创建UserException异常类、UserErrorCode枚举。

UserException:

继承 BusinessException

/**
 * {@link RuntimeException} user 业务异常
 *
 * @author purgeyao
 * @since 1.0
 */
@Getter
public class UserException extends BusinessException {

  private String code;
  private boolean isShowMsg = true;

  /**
   * 使用枚举传参
   *
   * @param errorCode 异常枚举
   */
  public UserException(UserErrorCode errorCode) {
    super(errorCode.getCode(), errorCode.getMessage());
    this.code = errorCode.getCode();
  }

}

UserErrorCode:

@Getter
public enum UserErrorCode {
    /**
     * 权限异常
     */
    NOT_PERMISSIONS("CLOUD401","您没有操作权限"),
    ;

    private String code;

    private String message;

    UserErrorCode(String code, String message) {
        this.code = code;
        this.message = message;
    }
}

最后业务使用如下:

// 判断是否有权限抛出异常
throw new UserException(UserErrorCode.NOT_PERMISSIONS);

上述方式,抛出异常后会被模块处理。前台返回如下

{
  "succ": false,        // 是否成功
  "ts": 1566467628851,  // 时间戳
  "data": null,         // 数据
  "code": "CLOUD800",   // 错误类型
  "msg": "业务异常"      // 错误描述
}

Tow 统一返回封装 🗳

在REST风格的开发中,避免通常会告知前台返回是否成功以及状态码等信息。这里我们通常返回的时候做一次util的包装处理工作,如:Result类似的类,里面包含succcodemsgdata等字段。

接口调用处理类似如下:

  @GetMapping("hello")
  public Result list(){
    return Result.ofSuccess("hello");
  }

结果:

{
  "succ": ture,         // 是否成功
  "ts": 1566467628851,  // 时间戳
  "data": "hello",      // 数据
  "code": null,         // 错误类型
  "msg": null           // 错误描述
}

功能使用

默认情况所有的 web controller 都会被封装为以下返回格式。

接口:

@GetMapping("test")
public String test(){
  return "test";
}

返回

{
  "succ": true,             // 是否成功
  "ts": 1566386951005,      // 时间戳
  "data": "test",           // 数据
  "code": null,             // 错误类型
  "msg": null               // 错误描述         
}

忽略封装注解:@IgnoreResponseAdvice

@IgnoreResponseAdvice允许范围为:类 + 方法,标识在类上这个类下的所有方法的返回都将忽略返回封装。

接口:

@IgnoreResponseAdvice // 忽略数据包装 可添加到类、方法上
@GetMapping("test")
public String test(){
  return "test";
}

返回 test

总结

项目里很多重复的code,我们可以通过一定的方式去简化,以达到一定目的减少开发量。PurgeTeam 具有一些优秀的开源组件,减少日常的开发量。

示例代码地址:unified-dispose-springboot

作者GitHub: Purgeyao 欢迎关注

qq交流群: 812321371 微信交流群: MercyYao

微信公众号:

微信公众号二维码

com.purgeteam

purgeteam

Springboot相关组件简化开发,微信交流群:MercyYao QQ交流群:812321371。Springboot peripherals to simplify development. WeChat ac group:MercyYao QQ ac group:812321371

Versions

Version
0.1.3.RELEASE
0.1.2.RELEASE
0.1.1.RELEASE