Spring Batch 4.0~JdbcCursorItemReader方法下的代码不能在定义了@StepScope的情况下运行

时间:2018-05-15 15:31:57

标签: spring-batch

我的批处理作业中定义了一个sql查询,需要在运行时从用户那里获得输入。

我的批处理作业中有以下项目阅读器定义如下

json.market.reduce((acc, market) => acc + market.company.length, 0)

我从我的应用程序类发送作业参数,如下所示

@StepScope
@Bean
public JdbcCursorItemReader<QueryCount> queryCountItemReader() throws Exception {

    ListPreparedStatementSetter preparedStatementSetter = new ListPreparedStatementSetter() {
        @Override
        public void setValues(PreparedStatement pstmt) throws SQLException {
            pstmt.setString(1, "#{jobparameters[fromDate]}");
            pstmt.setString(2, "#{jobparameters[toDate]}");
            pstmt.setString(3, "#{jobparameters[fromDate]}");
            pstmt.setString(4, "#{jobparameters[toDate]}");
            pstmt.setString(5, "#{jobparameters[fromDate]}");
            pstmt.setString(6, "#{jobparameters[toDate]}");
            pstmt.setString(7, "#{jobparameters[eventType]}");
            pstmt.setString(8, "#{jobparameters[businessUnit]}");
            pstmt.setString(9, "#{jobparameters[deviceCategory]}");
            pstmt.setString(10, "#{jobparameters[numberOfSearchIds]}");
        }
    };

    JdbcCursorItemReader<QueryCount> queryCountJdbcCursorItemReader = new JdbcCursorItemReader<>();
    queryCountJdbcCursorItemReader.setDataSource(dataSource);
    queryCountJdbcCursorItemReader.setSql(sqlQuery);
    queryCountJdbcCursorItemReader.setRowMapper(new QueryCountMapper());
    queryCountJdbcCursorItemReader.setPreparedStatementSetter(preparedStatementSetter);

    int counter = 0;
    ExecutionContext executionContext = new ExecutionContext();

    queryCountJdbcCursorItemReader.open(executionContext);

    try {

        QueryCount queryCount;

        while ((queryCount = queryCountJdbcCursorItemReader.read()) != null) {

            System.out.println(queryCount.toString());

            counter++;
        }

    }catch (Exception e){
        e.printStackTrace();
    }finally {
        queryCountJdbcCursorItemReader.close();
    }

    return queryCountJdbcCursorItemReader;
}

问题是,当我运行我的批处理作业时,queryCountItemReader()方法中的代码永远不会执行,并且作业完成且没有错误。本质上我试图运行的SQL查询永远不会执行。如果我删除@StepScope注释,代码将运行但失败并显示错误,因为它启用了将从应用程序类发送的参数绑定到sql查询。我意识到@StepScope是使用作业参数所必需的,但为什么我的方法中的代码不执行?

1 个答案:

答案 0 :(得分:0)

通过添加@EnableBatchProcessing&amp; @EnableAutoConfiguration注释和更改项目阅读器方法定义,如下所示,

@StepScope
@Bean
public JdbcCursorItemReader<QueryCount> queryCountItemReader(@Value("#{jobParameters['fromDate']}") String fromDate,
                                                             @Value("#{jobParameters['toDate']}") String toDate,
                                                             @Value("#{jobParameters['eventType']}") String eventType,
                                                             @Value("#{jobParameters['businessUnit']}") String businessUnit,
                                                             @Value("#{jobParameters['deviceCategory']}") String deviceCategory,
                                                             @Value("#{jobParameters['numberOfSearchIds']}") String numberOfSearchIds) throws Exception {