spring batch中MyBatisPagingItemReader分页使用介绍

Posted ppjj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring batch中MyBatisPagingItemReader分页使用介绍相关的知识,希望对你有一定的参考价值。

假如是mysql的话,SQL语句

select * from 
(
SELECT so.* FROM t_tm_sales_order so 
where so.last_modified_time >= to_timestamp(‘2015-05-05‘,‘yyyy-mm-dd hh24:mi:ss‘) 
order by so.id limit #{_pagesize} OFFSET #{_skiprows}  
) temp_a inner join t_tm_sales_order_line sol on temp_a.id=sol.so_id

假如是oracle的话,SQL语句

select t2.* from
(select t1.*,rownum rn from
(select * from a) t1 where rownum<= (#{_pagesize} + #{_skiprows})) t2 where t2.rn > #{_skiprows}

 

以上是关于spring batch中MyBatisPagingItemReader分页使用介绍的主要内容,如果未能解决你的问题,请参考以下文章

Spring Batch 作业状态未在数据库中更新

Spring boot spring.batch.job.enabled=false 无法识别

Spring boot spring.batch.job.enabled=false 无法识别

关于这个 Spring Batch @Scheduled() 注解以及如何手动启动 Spring Batch 作业的一些疑问?

spring batch(二):核心部分:配置Spring batch

spring-batch (ItemProcessor) 数据处理过程