RepositoryItemReader 找不到带参数的方法

RepositoryItemReader doesn't find methods with arguments

我正在 springBatch 步骤中为 reader 设置 ItemRepositoryReader。

public ItemReader<EcheanceEntity> reader(){
    RepositoryItemReader<EcheanceEntity> reader = new RepositoryItemReader<EcheanceEntity>();
    reader.setRepository(echeanceRepository);
    reader.setMethodName("findById");
    List parameters = new ArrayList();
    long a = 0;
    parameters.add(a);
    reader.setArguments(parameters);
    Map<String, Direction> sort = new HashMap<String, Direction>();
    sort.put("id", Direction.ASC);
    reader.setSort(sort);
    return reader;
}

这是我存储库中的行。

public interface EcheanceRepository extends JpaRepository<EcheanceEntity, Long>{


public EcheanceEntity findById(long id);

@Override
public List<EcheanceEntity> findAll();

如果使用 findAll() 方法,那么在没有任何参数的情况下,它可以正常工作。但是如果我使用 findById(long id) 方法,我会从 ItemRepositoryReader 得到 "no such method exception, findById(java.lang.Long, org.springframework.data.domain.PageRequest)"。当我通过立即使用存储库对其进行测试时,该方法在不使用 reader 的情况下工作正常。

谢谢。

在使用 RepositoryItemReader#setMethodName 方法的情况下,您需要在存储库方法签名的最后位置添加类型为 Pageable 的参数:

    public interface EcheanceRepository extends JpaRepository<EcheanceEntity, Long> {
    
        public Page<EcheanceEntity> findById(long id, Pageable pageable);
        ...

您可以在文档中找到它的描述:http://docs.spring.io/spring-batch/apidocs/org/springframework/batch/item/data/RepositoryItemReader.html#setMethodName-java.lang.String-

public void setMethodName(java.lang.String methodName)

Specifies what method on the repository to call. This method must take Pageable as the last argument.