当前位置:   article > 正文

Spring Boot 统一返回前端封装VO类型结果集定义_springboot返回给前端的vo应该怎么写

springboot返回给前端的vo应该怎么写

现在大部分项目都是前后端分离的项目,为了统一管理,后端需要对数据进行封装对应的VO数据,什么是Vo我就不叙述了,这里贴出我自己的VO封装类,项目的故障码并没有定义太多,所以也没有定义枚举类型,供大家参考:

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import java.io.Serializable;

@ApiModel(description = "响应信息")
@Data
@NoArgsConstructor
@AllArgsConstructor
public class ServerResponseVO<T> implements Serializable {
    private static final long serialVersionUID = -1005863670741860901L;
    @ApiModelProperty("响应码")
    private Integer code;
    @ApiModelProperty("响应信息描述")
    private String message;
    @ApiModelProperty("响应数据")
    private T data;

    public ServerResponseVO(Integer code, String message) {
        this.code = code;
        this.message = message;
    }
    public static <T> ServerResponseVO<T>  success(){
        return  new  ServerResponseVO(200,"成功");
    }
    public static <T> ServerResponseVO<T>  success(String  msg){
        return  new  ServerResponseVO(200,msg);
    }
    public static <T> ServerResponseVO<T>  success(String  msg,T data){ return new  ServerResponseVO(200,msg,data); }
    public static <T> ServerResponseVO<T> error(String message){
        return new ServerResponseVO(500,message);
    }
    public static <T> ServerResponseVO<T> error(Integer code,String message,T obj){ return new  ServerResponseVO(code,message,obj); }
    public static <T> ServerResponseVO<T> error(String message,T obj){
        return new ServerResponseVO(500,message,obj);
    }

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41

这里说下为什么用了泛型而不用Object类型,是因为项目用了Swagger2 来加载线上文档,如果不写泛型T,在文档上不显示Result封装结果集里面的注释,当然你也可以不加,都行

另外在返回前端的数据中会有很多null的值,似乎不是很优雅,当然也是可以解决的,我们在配置文件中配置:

spring:
  jackson:
    default-property-inclusion: non_null
  • 1
  • 2
  • 3

这里注意跟前端交接好哦,看前端是否必须要这些字段再配置;

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/黑客灵魂/article/detail/869844
推荐阅读
相关标签
  

闽ICP备14008679号