springboot java.util.NoSuchElementException: No value present 异常处理
Posted super_胡
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot java.util.NoSuchElementException: No value present 异常处理相关的知识,希望对你有一定的参考价值。
使用jpa查询的时候,如果查询不到数据,就会返回这个错误,下面是处理方法。
@Override public User findByEmail(String email) { User user = new User(); user.setEmail(email); Example<User> example = Example.of(user); Optional<User> optional = userDao.findOne(example); return optional.isPresent() ? optional.get(): null; }
以上是关于springboot java.util.NoSuchElementException: No value present 异常处理的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot入门到精通-SpringBoot自定义starter
最全面的SpringBoot教程——SpringBoot概述