spring的断言工具类Assert的基本使用
Posted jpfss
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring的断言工具类Assert的基本使用相关的知识,希望对你有一定的参考价值。
这几天比较闲看了下以前的项目,发现了这个spring下的Assert方法,(以前用过,不过好像忘的差不多了*.*)
org.springframework.util.Assert;
Assert断言工具类,通常用于数据合法性检查.
平时做判断通常都是这样写
if (message== null || message.equls("")) {
throw new IllegalArgumentException("输入信息错误!");
}
用Assert工具类上面的代码可以简化为:
Assert.hasText((message, "输入信息错误!");
下面来介绍我收集的一下Assert 类中的常用断言方法:
Assert.notNull(Object object, "object is required") - 对象非空
Assert.isTrue(Object object, "object must be true") - 对象必须为true
Assert.notEmpty(Collection collection, "collection must not be empty") - 集合非空
Assert.hasLength(String text, "text must be specified") - 字符不为null且字符长度不为0
Assert.hasText(String text, "text must not be empty") - text 不为null且必须至少包含一个非空格的字符
Assert.isInstanceOf(Class clazz, Object obj, "clazz must be of type [clazz]") - obj必须能被正确造型成为clazz 指定的类
以上是关于spring的断言工具类Assert的基本使用的主要内容,如果未能解决你的问题,请参考以下文章
别再自己瞎写工具类了,Spring Boot 内置工具类应有尽有。。。
别再自己瞎写工具类了,Spring Boot 内置工具类应有尽有, 建议收藏!!