摘要: 一、接口的默认方法 Java 8允许我们给接口添加一个非抽象的方法实现,只需要使用 default关键字即可,这个特征又叫做扩展方法,示例如下: interface Formula { double calculate(int a); default double sqrt(int a) { ret 阅读全文
posted @ 2020-04-19 21:47 Q1Zhen 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 在pom.xml中添加如下配置 1 <build> 2 <plugins> 3 <plugin> 4 <groupId>org.apache.maven.plugins</groupId> 5 <artifactId>maven-jar-plugin</artifactId> 6 <configur 阅读全文
posted @ 2020-04-19 17:56 Q1Zhen 阅读(651) 评论(0) 推荐(0) 编辑
摘要: 1.hadoop默认提供Writable int -- IntWritable long -- LongWritable String -- Text null -- NullWritable double -- DoubleWritable float -- FloatWritable boole 阅读全文
posted @ 2020-04-19 17:52 Q1Zhen 阅读(253) 评论(0) 推荐(0) 编辑
摘要: job五大阶段 InputFormat 1.InputFormat --> FileInputFormat --> TextInputFormat 重点:DBInputFormat、KeyValueInputFormat、TextInputFormat 为每个job作业验证hdfs上数据(数据是否存 阅读全文
posted @ 2020-04-19 17:28 Q1Zhen 阅读(274) 评论(0) 推荐(0) 编辑