打包出问题,,源头就是 打包的时候 可能没有将依赖的包打进去。 scope : 1.compile 编译范围,默认scope,在工程环境的classpath(编译环境)和打包(如果是WAR包,会包含在WAR包中)时候都有效。 2.provided 容器或JDK已提供范围,表示该依赖包已经由目标容器( ...
分类:
编程语言 时间:
2019-05-14 14:47:45
阅读次数:
332
在写一个mapreduce类之前先添加依赖包 新建一个WordCountMapper类 定义WordCountReducer类 定义WordCountRunner类 打成架包 把打包好的架包上传到集群 然后在集群上运行一个wordcount小案例 ...
分类:
其他好文 时间:
2019-05-13 23:06:00
阅读次数:
129
单例模式指在系统中有且仅有一个对象实例,比如Spring的Scope默认就是采用singleton。单例模式的特征是:1、确保不能通过外部实例化(确保私有构造方法)2、只能通过静态方法实例化 懒汉模式——只有需要才创建实例 懒汉模式需要注意到多线程问题 饿汉模式——初始化类时就创建实例 附录 zh. ...
分类:
其他好文 时间:
2019-05-13 12:38:37
阅读次数:
143
//加时间戳防缓存 var imgurl = "/pcms/headImg/${sessionScope.accountInfo.accountId}_cut.jpg?time="+new Date().getTime(); $('.header-portrait img').remove(); $... ...
分类:
其他好文 时间:
2019-05-13 12:23:12
阅读次数:
187
<template> <section> <div id="barDouble" class="electricDescribeYear"></div> </section> </template> <script lang="ts"> import { Component, Vue } from ...
分类:
其他好文 时间:
2019-05-11 16:07:58
阅读次数:
245
引入使用 官网有简单的安装和使用教程。 <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.16.18</version> <scope>provided</scop ...
分类:
其他好文 时间:
2019-05-09 19:48:29
阅读次数:
401
引言 为什么想到制作这么一个插件呢,是因为博主在更新微信公众号【刷尽天下】的后台数据库时,需要有博客园题目帖子的链接,那么就要从这篇帖子 "LeetCode All in One 题目讲解汇总(持续更新中...)" 中提取各个题目的链接。之前博主都是使用的都是Excel的插件 "Kutools" 来 ...
分类:
其他好文 时间:
2019-05-09 10:51:44
阅读次数:
127
HTML5同时增加和废除了很多属性。下面介绍一些常用的属性。 1、表单属性 为input(type=text)、select、textarea与button元素新增了autofocus属性。(它以指定属性的方式让元素在画面打开时自动获得焦点) 为input(type=text)与Texta 热啊、元 ...
分类:
Web程序 时间:
2019-05-08 09:43:35
阅读次数:
155
获取request对象: 首先配置web.xml文件--> [html] view plaincopy <listener> <listener-class> org.springframework.web.context.request.RequestContextListener </liste ...
分类:
编程语言 时间:
2019-05-05 11:43:06
阅读次数:
210
Like most modern programming language, JavaScript uses lexical scoping. This means that the functions are executed using the variable scope that was i ...
分类:
其他好文 时间:
2019-05-04 09:23:15
阅读次数:
81