SpringMybatis 分页读取数据库数据
程序员文章站
2022-04-04 07:59:58
1.ORACLE SQL select * from table where xxx order by xxxx OFFSET #{_skiprows} ROWS FETCH FIRST #{_pagesize} ROWS ONLY2.xml配置
1.ORACLE SQL
select * from table where xxx order by xxxx
OFFSET #{_skiprows} ROWS FETCH FIRST #{_pagesize} ROWS ONLY
2.xml配置
<bean id="itemReader" class="org.mybatis.spring.batch.MyBatisPagingItemReader"
p:queryId="oxxxx.querySql"
p:sqlSessionFactory-ref="sqlSessionFactoryl"
scope="step">
<property name="parameterValues">
<map>
<entry key="JobID" value="#{jobParameters['JobID']}">
</entry>
</map>
</property><property name="pageSize" value="1000"/>
</bean>
本文地址:https://blog.csdn.net/piao208/article/details/107668895
上一篇: 利用Sql Server代理中的作业实现数据库的自动备份
下一篇: 分页添加想要的数据!