Spring Data JPA方法

问题描述

我有方法

List<Notification> findTop20ByToUserIdAndIdGreaterThanAndOrderByIdDesc(Long ToUserId,Long lastId);

我有通知列表,并希望使用此方法

  1. 选择发送到“ toUserId”的通知

  2. 选择最后添加的20个

  3. 按Desc对20进行排序

  4. 并选择一个大于(我提供给方法的lastId数量(出于更新原因))。

    不起作用并抛出异常:

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'notificationRepo': factorybean threw exception on object creation; nested exception is java.lang.IllegalArgumentException: Failed to create query for method public abstract java.util.List com.bagenger.persistence.dao.NotificationRepo.findTop20ByToUserIdAndIdGreaterThanAndOrderByIdDesc(java.lang.Long)! No property greaterThanAnd found for type Long! Traversed path: Notification.id.
 My Entity:

@Entity
@Data
public class Notification {
    @Id
    @GeneratedValue(strategy= GenerationType.AUTO)
    @Column(name = "id",unique = true,nullable = false)
    private Long id;
    private Long fromUserId;
    private Long toUserId;
    private String url;
    
    @ColumnDefault("false")
    private boolean isRead;
    private String message;
    
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
    private LocalDateTime createDate;
}

我该如何重写方法才能正常工作?

解决方法

好像是方法名称出现问题,应添加实体类名称:通知 这个正在工作:

List<Notification> findTop20NotificationByToUserIdAndIdGreaterThanOrderByIdDesc(Long ToUserId,Long lastId);
,

方法名称不符合标准。您可以尝试使用以下方法名称。

List<Notification> findTop20NoByToUserIdIsAndIdIsGreaterThanOrderByIdDesc(Long ToUserId,Long lastId);