目录
概述
很久没有写过blog了,近日工作中使用到批量任务的需求,需求内容大致为上传批量文件,对批量文件做解析处理,解析文件为po对象,然后再加入到task任务线程池,需求做的比较吃力,故趁着周末学习下spring batch相关的知识。
正文
学习新的技术最好是从官网上学习,无奈spring的官网都是纯英文,所以参考了springbatch参考文档中文版,对其中的demo进行了debug方式的学习。文档中是按照commandLine的形式运行该demo的,不利于调试,单元测试run该项目就花了不少时间,所以还是贴下自己单元测试的code吧。测试类如下:
package com.geekcap.javaworld;
import org.junit.Test;
import org.springframework.batch.core.Job;
import org.springframework.batch.core.JobParameters;
import org.springframework.batch.core.JobParametersBuilder;
import org.springframework.batch.core.launch.JobLauncher;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
* Unit test for spring batch
* created by Tiger Meng on 2018/08/25
*/
public class AppTest {
@Test
public void testBatch() throws Exception {
ApplicationContext ac = new ClassPathXmlApplicationContext("jobs/file-import-job.xml");
JobParameters parameters = new JobParametersBuilder().addString("inputFile", "sample.csv文件的全路径").toJobParameters();
JobLauncher jobLauncher = ac.getBean("jobLauncher", JobLauncher.class);
Job job = ac.getBean("simpleFileImportJob", Job.class);
jobLauncher.run(job, parameters);
}
}
sample.cvs文件路径按照本地的路径进行填充即可,另外需要创建数据库表product,本地数据源也需要进行配置,创建表的sql可参考:
CREATE TABLE `product` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(256) DEFAULT NULL,
`description` varchar(1024) DEFAULT NULL,
`quantity` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
总结
spring batch蛮实用的,从源码中能学习到不少东西,学习的过程比较枯燥,但是学到内容后的乐趣也是巨大的。