摘要: A quick guide to show you how to run a Spring batch job withCommandLineJobRunner.1. Spring Batch Job ExampleA simple job.resources/spring/batch/jobs/j... 阅读全文
posted @ 2015-09-28 14:52 yzhming 阅读(1550) 评论(0) 推荐(0) 编辑
摘要: In Spring batch, theTaskletis an interface, which will be called to perform a single task only, like clean or set up resources before or after any ste... 阅读全文
posted @ 2015-09-28 10:58 yzhming 阅读(3952) 评论(0) 推荐(0) 编辑
摘要: Spring Batch TutorialPhoto credit:Spring SourceSpring Batch, is an open source framework for batch processing – execution of a series of jobs. Spring ... 阅读全文
posted @ 2015-09-28 09:57 yzhming 阅读(509) 评论(0) 推荐(0) 编辑
摘要: Spring Batch is a framework for batch processing – execution of a series of jobs. In Spring Batch, A job consists of many steps and each step consists... 阅读全文
posted @ 2015-09-27 22:46 yzhming 阅读(223) 评论(0) 推荐(0) 编辑
摘要: Spring Batch is a framework for batch processing – execution of a series of jobs. In Spring Batch, A job consists of many steps and each step consists... 阅读全文
posted @ 2015-09-27 22:45 yzhming 阅读(356) 评论(0) 推荐(0) 编辑
摘要: In this tutorial, we will show you how to read data from a MySQL database, withJdbcCursorItemReaderandJdbcPagingItemReader, and write it into an XML f... 阅读全文
posted @ 2015-09-27 09:05 yzhming 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 1. Project Directory StructureA standard Maven project.2. Spring TaskSchedulerSpring 3.0 introduces aTaskSchedulerfor scheduling tasks. It’s part of t... 阅读全文
posted @ 2015-09-25 17:29 yzhming 阅读(483) 评论(0) 推荐(0) 编辑
摘要: Nginx Plus的商业授权版开始具有TCP负载均衡的功能。从Nginx 1.7.7版本开始加入的,现在变成了一个商业收费版本,想要试用,需要在官网申请。也就是说,Nginx除了以前常用的HTTP负载均衡外,Nginx增加基于TCP协议实现的负载均衡方法。HTTP负载均衡,也就是我们通常所有“七层... 阅读全文
posted @ 2015-09-24 11:17 yzhming 阅读(3658) 评论(0) 推荐(0) 编辑
摘要: IIS Server 实现自动启动停止有4种方法1.使用net命令输入 net stop iisadmin /y 回车停止IIS;再输入 net start iisadmin 回车启动IIS;再输入 net start w3svc 回车WEB服务2.使用IISReset命令3.使用IIS的vbs脚本... 阅读全文
posted @ 2015-07-20 16:28 yzhming 阅读(730) 评论(0) 推荐(0) 编辑
摘要: 一.查旬一个表有哪些主键:(1)EXEC sp_pkeys @table_name='表名'可以按数据库中表的顺序显示(2)SELECT TABLE_NAME,COLUMN_NAME FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE WHERE TABLE_NAME... 阅读全文
posted @ 2014-09-05 16:31 yzhming 阅读(2286) 评论(0) 推荐(0) 编辑