在java中,为了判断查询的类对象是否存在,采用此方法:

eg:

public ShopHomeView findByOwnerIds(String ownerId) {

Optional<ShopHomeView> view = shopHomeViewRepository.findByOwnerId(ownerId);
if(view.isPresent()) {
return view.get();
}else {
return null;
}
}

.isPresent()一般与.get()方法合用,当view存在时,view.isPresent()值为true,通过get()方法返回对象。

 

posted on 2018-12-25 22:07  qqzhulu  阅读(10666)  评论(1编辑  收藏  举报