摘要:
import java.util.Random;import java.util.concurrent.CyclicBarrier;import java.util.concurrent.Executor;import java.util.concurrent.ExecutorService;imp... 阅读全文
摘要:
Haroopad - The next document processor 阅读全文
摘要:
```javapackage com.alibaba.china.gene.test;import java.io.UnsupportedEncodingException;import java.net.URLDecoder;import java.net.URLEncoder;/** * 模拟测... 阅读全文
摘要:
转自:http://blog.csdn.net/geminiroy/article/details/5320034第1章.Log4j的优点第2章.配置文件Log4j由三个重要的组件构成:日志信息的优先级,日志信息的输出目的地,日志信息的输出格式。日志信息的优先级从高到低有FATAL、ERROR、WA... 阅读全文
摘要:
今天在程序中用到java反射机制时,遇到的问题记录一下:我当时遇到的问题是,我用反射getMethod()调用类方法时,发生 NoSuchMethodException异常,后来上网发现getMethod()调用公共方法,不能反射调用私有方法,后来找到 getDeclaredField()能够访问本... 阅读全文
摘要:
一、初始化标注在老Junit4提供了setUp()和tearDown(),在每个测试函数调用之前/后都会调用。@Before:Method annotated with @Before executes before every test.@After: Method annotated with ... 阅读全文
摘要:
package com.lt.Demo.TestDemo;import java.util.Arrays;import java.util.Collection;import org.junit.After;import org.junit.AfterClass;import org.junit.B... 阅读全文
摘要:
Lombok是一种JavaArchive(JAR)文件,可用来消除Java代码的冗长。通过在开发环境中实现Lombok,开发人员可以节省构建诸如hashCode()和equals()这样的方法以及以往用来分类各种accessor和mutator的大量时间。先到http://projectlombok... 阅读全文
摘要:
转自:http://www.cnblogs.com/adolfmc/archive/2012/07/31/2616908.html1 下载源代码:mvn dependency:sources -DdownloadSources=true -DdownloadJavadocs=truemaven常用命... 阅读全文
摘要:
闲来整理资料,发现去年8月在淘宝技术质量部的实习总结,本是为转正面试做的准备,现在看来还是有一定的用途的。希望在后面的一年里,能够给自己起到指导作用。总结:测试思想,测试流程,业务,技术。1.如何做测试:(1)深入了解产品(包括产品的定位,产品的需求,参评的实现过程)、注重细节(2)保持怀疑的态度、... 阅读全文