Я создал этот запрос в репозитории этого класса:
@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));