一个不好的示范:
-
public List<User> listUser(){
-
List<User> userList = userListRepostity.selectByExample(new UserExample());
-
if(CollectionUtils.isEmpty(userList)){//spring util工具类
-
return null;
-
}
-
return userList;
-
}
如果用JDK 8,可以使用optional,如果不是的话,可以使用google guva库:
-
public List<User> listUser(){
-
List<User> userList = userListRepostity.selectByExample(new UserExample());
-
if(CollectionUtils.isEmpty(userList)){
-
return Lists.newArrayList(); //guava类库提供的方式
-
}
-
return userList;
-
}