//返回布尔值
//isNotBlank: 既会判断不等于null 又会判断不等于""
//isNotEmpty: 只会判断不等于null
//如下:
if(!StringUtils.isNotBlank("name")){

}else{

}