@valid---用好valid,让接口干净

第一种JSR303

在这里插入图片描述

引入

<dependency>
        <groupId>org.hibernate.validator</groupId>
        <artifactId>hibernate-validator</artifactId>
      </dependency>

实体检查

one 1,2,3 逗号隔开的单个字符串

@NotEmpty(message = "channels can't null or empty")
    @Pattern(regexp = "(?:(\\d|[1-2]\\d|3[0-2])(?:,|$))+", message = "invalid channels")
    @ApiModelProperty(value = "设备通道,1开始.数字表示通道,0表示所有通道。用英文逗号间隔,此时的通道号操作都是对所有通道号一起操作", required = true)
    private String channels;

two 不能为null

@NotNull(message = "streamType can't null")

three 数字范围

@Range(min = 1, max = 32, message = “channels must be 1~32”)

@Range(min = 1, max = 32, message = "channels must be 1~32")
    @ApiModelProperty(value = "数字表示通道,设备通道,1开始", required = true)
    private Long channel;

four 日期

先配置yml

spring:
  jackson:
    default-property-inclusion: non_null
    date-format: yyyy-MM-dd HH:mm:ss
    time-zone: GMT+8
    deserialization:
      adjust_dates_to_context_time_zone: true

  @NotNull(message = "endTime can't be null")
//    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "结束时间, yyyy-MM-dd HH:mm:ss", required = true)
    private String endTime;
 @Pattern(regexp = "\\d{4}-\\d{2}", message = "`beginDate` must format be `yyyy-MM`")
    @ApiModelProperty(value = "查询的开始日期,格式 yyyy-MM", example = "2019-04")
    private String beginDate;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值