这周遇到了一个很尴尬的错误 org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from class path resource [spri ...
分类:
其他好文 时间:
2018-01-08 01:12:22
阅读次数:
268
1. @Test : 测试方法,测试程序会运行的方法,后边可以跟参数代表不同的测试, 如(expected=XXException.class) 异常测试,(timeout=xxx)超时测试 2. @Ignore : 被忽略的测试方法 3. @Before: 每一个测试方法之前运行 4. @Afte ...
分类:
其他好文 时间:
2018-01-05 21:56:48
阅读次数:
206
问题一、强制关闭Redis快照导致不能持久化 MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the d ...
分类:
其他好文 时间:
2018-01-05 16:06:36
阅读次数:
161
一、数组的概念 1.1 数组 数组是一组具有相同数据类型的有序变量的集合,在内存中表现为一块连续的存储区域。 1.2 数组的定义 数组定义:在普通变量定义后加[常量] 类型标识符 数组名[常量表达式] 错误:[变量]:error C2057: expected constant expression ...
分类:
编程语言 时间:
2018-01-03 22:48:04
阅读次数:
434
Security--Virtualization--Inter(R) Virtualization Technolog 设置为enable 本机安装的是WIN 7 ,详细版本是:Windows 7 Ultimate, 32-bit 6.1.7601, Service Pack 1 。虚拟机版本:7. ...
分类:
系统相关 时间:
2018-01-03 21:11:31
阅读次数:
259
已经启动过的node,如果改了配置的clustername,再启动就会报错 org.apache.cassandra.exceptions.ConfigurationException: Saved cluster name Test Cluster != configured name xxx 这 ...
分类:
其他好文 时间:
2018-01-03 13:58:14
阅读次数:
216
I was well beaten myself, and I am beffer for it. 我自己也被打败过,但我因此变得更好。 For most of us, the life road can't be as easy and smooth as we had expected, it ...
分类:
其他好文 时间:
2018-01-03 11:36:05
阅读次数:
163
代码如上,但是运行报错: 发现是因为少了缩进,改正为如下: 就没得问题了。 运行为: 但是若在改正代码格式: 输出为: 在这里就能看出来:Python 最具特色的就是用缩进来写模块! 缩进的空白数量是可变的,但是所有代码块语句必须包含相同的缩进空白数量,这个必须严格执行。 IndentationEr ...
分类:
编程语言 时间:
2018-01-02 16:49:48
阅读次数:
255
明明硬盘中存在users.xml,但是提示:系统找不到指定的路径。 解决办法: 设置String的编码格式 源代码: HTTP Status 500 – Internal Server Error Type Exception Report Message org.dom4j.DocumentExc ...
分类:
Web程序 时间:
2017-12-31 03:03:34
阅读次数:
278
1. LinkedHashMap LinkedHashMap继承自HashMap,通过覆盖HashMap的一些方法,而在其内部维护了一个双向链表 1)get(覆盖)、afterNodeAccess、afterNodeInsertion(覆盖)和removeEldestEntry的组合可实现LRU(L ...
分类:
其他好文 时间:
2017-12-25 15:04:55
阅读次数:
168