不是每一次努力都會有收穫,但是每一次收穫都必須努力,這是一個不公平的不可逆轉。
這幾天比較閒看了下以前的專案,發現了這個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 指定的類