Получение нуля из запроса к репозиторию - PullRequest
0 голосов
/ 28 сентября 2018

Я создал этот запрос в репозитории этого класса:

@Repository
public interface MenuAlertNotificationRepository 
                    extends CrudRepository<MenuAlertNotification, Long> {

List<MenuAlertNotification> findByUserAndCreationDateAfter(User user, LocalDateTime creationDate);

}

Но я понял, что есть 1 элемент, который null.Как получилось?

    menuAlertNotifications
    .stream()
    .forEach(
            element -> System.out.println("element-----> " + element));
...