从存储库查询获取null

时间:2018-09-28 15:20:31

标签: spring-boot java-8 spring-data-jpa repository java-stream

我已经在此类存储库中创建了此查询:

@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));

0 个答案:

没有答案