1、错误描写叙述 六月 25, 2014 11:32:49 下午 freemarker.log.JDK14LoggerFactory$JDK14Logger error 严重: Template processing error: "Macro select has no such argument ...
分类:
其他好文 时间:
2017-07-04 21:41:50
阅读次数:
196
本文将通过一个完整的实例,与大家一起讨论运用Spring Batch对CSV文件的读写操作。此实例的流程是:读取一个含有四个字段的CSV文件(ID,Name,Age,Score),对读取的字段做简单的处理,然后输出到另外一个CSV文件中。 工程结构如下图: JobLaunch类用来启动Job, Cs ...
分类:
编程语言 时间:
2017-07-04 17:00:55
阅读次数:
323
工厂模式是另一种非常常用的模式,正如其名字所示:确实是对象实例的生产工厂。某些意义上,工厂模式提供了通用的方法有助于我们去获取对象,而不需要关心其具体的内在的实现 ...
分类:
其他好文 时间:
2017-07-04 12:13:18
阅读次数:
109
Have you ever known the theory of chocie? There are a bunch of axiems, but there are only two thing we really need to concern with. One, the only pers ...
分类:
其他好文 时间:
2017-07-04 11:19:51
阅读次数:
118
启动zookeeper zkServer.sh start 启动kafka服务器 kafka-server-start.sh /software/kafka_2.10-0.10.2.1/config/server.properties 后台启动 kafka-server-start.sh -daem ...
分类:
其他好文 时间:
2017-07-03 19:58:26
阅读次数:
1491
HttpClient client = factory.getHttpClient(); //or any method to get a client instance Credentials credentials = new UsernamePasswordCredentials(userna... ...
分类:
编程语言 时间:
2017-07-03 19:08:57
阅读次数:
131
scala函数编程特点: 1、Scala函数使用命名参数; 即函数参数传递的实参与函数名相对应,与函数位置不对应。 object Test { def main(args: Array[String]) { printInt(b=5, a=7); } def printInt( a:Int, b:I ...
分类:
其他好文 时间:
2017-07-02 22:11:41
阅读次数:
226
软件152苏锐 Quartz是一个强大的企业级任务调度框架,Spring中继承并简化了Quartz,下面就看看在Spring中怎样配置Quartz:首先我们来写一个被调度的类: package com.kay.quartz;public class QuartzJob{ public void wo ...
分类:
编程语言 时间:
2017-07-02 20:31:09
阅读次数:
258
近期在给公司项目做二次重构,将原来庞大的系统拆分成几个小系统。系统与系统之间通过接口调用,系统间通信有非常多方式,如系统间通信接口做成请求controller,只是这样不方便也不安全,经常使用的方式是使用rpc技术,能够使用webservices技术等等。因为我的架构是使用spring,并且spri ...
分类:
其他好文 时间:
2017-07-02 14:25:36
阅读次数:
223
scrapy.Spider的属性和方法 属性: name:spider的名称,要求唯一 allowed_domains:允许的域名,限制爬虫的范围 start_urls:初始urls custom_settings:个性化设置,会覆盖全局的设置 crawler:抓取器,spider将绑定到它上面 c... ...
分类:
其他好文 时间:
2017-07-02 13:03:15
阅读次数:
185