使用jpa查詢的時候,若是查詢不到數據,就會返回這個錯誤,下面是處理方法。ide
@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; }