成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

怎么在Springboot中對(duì)字段進(jìn)行校驗(yàn)-創(chuàng)新互聯(lián)

怎么在Springboot中對(duì)字段進(jìn)行校驗(yàn)?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

創(chuàng)新互聯(lián)公司堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:做網(wǎng)站、網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的新城網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!

Controller層 VS Service層


去網(wǎng)上查閱了一些資料,一般推薦與業(yè)務(wù)無關(guān)的放在Controller層中進(jìn)行校驗(yàn),而與業(yè)務(wù)有關(guān)的放在Service層中進(jìn)行校驗(yàn)。那么如何將參數(shù)校驗(yàn)寫的優(yōu)雅美觀呢,如果都是if - else,就感覺代碼寫的很low,還好有輪子可以使用

常用校驗(yàn)工具類

使用Hibernate Validate

引入依賴

<dependency>
 <groupId>org.hibernate</groupId>
 <artifactId>hibernate-validator</artifactId>
 <version>4.3.1.Final</version> 
</dependency>

常用注解說明

注解說明
@Length(min=,max=)檢查所屬的字段的長度是否在min和max之間,只能用于字符串
@Range(min=,max=,message=)被注釋的元素必須在合適的范圍內(nèi)
@Max該字段的值只能小于或等于該值
@Min該字段的值只能大于或等于該值
@NotNull不能為null
@NotBlank不能為空,檢查時(shí)會(huì)將空格忽略
@NotEmpty不能為空,這里的空是指空字符串
@Pattern(regex=,flag=)被注釋的元素必須符合指定的正則表達(dá)式

使用姿勢(shì)

需要搭配在Controller中搭配@Validated或@Valid注解一起使用,@Validated和@Valid注解區(qū)別不是很大,一般情況下任選一個(gè)即可,區(qū)別如下:

注解@Validated@Valid
所屬的包屬于org.springframework.validation.annotation包下的,是spring提供的屬于javax.validation包下,是jdk給提供的
是否支持分組和排序

雖然@Validated比@Valid更加強(qiáng)大,在@Valid之上提供了分組功能和驗(yàn)證排序功能,不過在實(shí)際項(xiàng)目中一直沒有用到過
Hibernate-validate框架中的注解是需要加在實(shí)體中一起使用的

定義一個(gè)實(shí)體

public class DataSetSaveVO {
 //標(biāo)識(shí)符為空
 @NotBlank(message = "user uuid is empty")
 //用戶名稱只能是字母和數(shù)字
 @Pattern(regexp = "^[a-z0-9]+$", message = "user names can only be alphabetic and numeric")
 @Length(max = 48, message = "user uuid length over 48 byte")
 private String userUuid;

 //數(shù)據(jù)集名稱只能是字母和數(shù)字
 @Pattern(regexp = "^[A-Za-z0-9]+$", message = "data set names can only be letters and Numbers")
 //文件名稱過長
 @Length(max = 48, message = "file name too long")
 //文件名稱為空
 @NotBlank(message = "file name is empty")
 private String name;

 //數(shù)據(jù)集描述最多為256字節(jié)
 @Length(max = 256, message = "data set description length over 256 byte")
 //數(shù)據(jù)集描述為空
 @NotBlank(message = "data set description is null")
 private String description;
}

說明:message字段為不符合校驗(yàn)規(guī)則時(shí)拋出的異常信息

Controller層中的方法

@PostMapping
public ResponseVO createDataSet(@Valid @RequestBody DataSetSaveVO dataSetVO) {
 return ResponseUtil.success(dataSetService.saveDataSet(dataSetVO));
}

說明:在校驗(yàn)的實(shí)體DataSetSaveVO旁邊添加@Valid或@Validated注解

使用commons-lang3

引入依賴

<dependency>
 <groupId>org.apache.commons</groupId>
 <artifactId>commons-lang3</artifactId>
 <version>3.4</version>
</dependency>

常用方法說明

方法說明
CollectionUtils.isEmpty判斷集合是否為空,為null或者size==0,返回true
CollectionUtils.isNotEmpty判斷集合是否為非空
StringUtils.isEmpty判斷字符串是否為空
StringUtils.isNotEmpty判斷字符串是否非空
StringUtils.isBlank判斷字符串是否為空,為null或者size==0或者只存在空白字符(如" "),則返回true
StringUtils.isNotBlank判斷字符串是否為非空

測試代碼

//StringUtils.isEmpty
System.out.println(StringUtils.isEmpty("")); //true
System.out.println(StringUtils.isEmpty(" ")); //false
//StringUtils.isNotEmpty
System.out.println(StringUtils.isNotEmpty("")); //false
 
//StringUtils.isBlank
System.out.println(StringUtils.isBlank("")); //true
System.out.println(StringUtils.isBlank(" ")); //true
//StringUtils.isNotBlank
System.out.println(StringUtils.isNotBlank(" ")); //false

List<Integer> emptyList = new ArrayList<>();
List<Integer> nullList = null;
List<Integer> notEmptyList = new ArrayList<>();
notEmptyList.add(1);

//CollectionUtils.isEmpty
System.out.println(CollectionUtils.isEmpty(emptyList)); //true
System.out.println(CollectionUtils.isEmpty(nullList)); //true
System.out.println(CollectionUtils.isEmpty(notEmptyList)); //false

//CollectionUtils.isNotEmpty
System.out.println(CollectionUtils.isNotEmpty(emptyList)); //false
System.out.println(CollectionUtils.isNotEmpty(nullList)); //false
System.out.println(CollectionUtils.isNotEmpty(notEmptyList)); //true

看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對(duì)創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司,的支持。

文章標(biāo)題:怎么在Springboot中對(duì)字段進(jìn)行校驗(yàn)-創(chuàng)新互聯(lián)
本文網(wǎng)址:http://jinyejixie.com/article32/cshdsc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供動(dòng)態(tài)網(wǎng)站、網(wǎng)站建設(shè)域名注冊(cè)、品牌網(wǎng)站設(shè)計(jì)軟件開發(fā)、網(wǎng)站排名

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

h5響應(yīng)式網(wǎng)站建設(shè)
昌平区| 师宗县| 芜湖县| 勃利县| 格尔木市| 闸北区| 耒阳市| 比如县| 板桥市| 革吉县| 永泰县| 贺兰县| 孙吴县| 呈贡县| 金寨县| 筠连县| 绥芬河市| 合江县| 沙河市| 兰考县| 庄浪县| 土默特右旗| 蚌埠市| 通山县| 水城县| 武威市| 紫云| 文化| 唐海县| 常山县| 东乌珠穆沁旗| 凤山市| 长阳| 洛南县| 班玛县| 象州县| 贺州市| 焦作市| 扬中市| 岫岩| 揭东县|