Spring的Assert工具类的用法

Posted 520playboy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring的Assert工具类的用法相关的知识,希望对你有一定的参考价值。

简介

今天在看spring mvc源码时看到下面代码,感觉蛮有意思的,在这里记录下

技术分享图片

Assert断言工具类,通常用于数据合法性检查,在JAVA编程中,通常会编写如下代码:  

if (name == null || name.equls("")) {  
    throw new IllegalArgumentException("参数错误!");  
}   
     
在所有方法中都使用手工检测合法性的方式并不是太好,因为这样影响了代码的可读性,若使用Assert工具类上面的代码可以简化为:  
Assert.hasText((name, "参数错误!");

这样可以大大增强代码的可读性,下面我们来介绍一下Assert 类中的常用断言方法:  
notNull(Object object, "object is required")    -    对象非空 3hf  
isTrue(Object object, "object must be true")   -    对象必须为true   
notEmpty(Collection collection, "collection must not be empty")    -    集合非空  
hasLength(String text, "text must be specified")   -    字符不为null且字符长度不为0   
hasText(String text, "text must not be empty")    -     text 不为null且必须至少包含一个非空格的字符  
isInstanceOf(Class clazz, Object obj, "clazz must be of type [clazz]")    -    obj必须能被正确造型成为clazz 指定的类












以上是关于Spring的Assert工具类的用法的主要内容,如果未能解决你的问题,请参考以下文章

spring的断言工具类Assert的基本使用

Spring断言工具类 “Assert” 的基本操作!

别再自己瞎写工具类了,Spring Boot 内置工具类应有尽有。。。

别再自己瞎写工具类了,Spring Boot 内置工具类应有尽有, 建议收藏!!

别再自己瞎写工具类了,Spring Boot 内置工具类应有尽有, 建议收藏!!

求你别自己瞎写工具类了,Spring自带的这些他不香麽?