2011年11月11日
摘要: 1 package tk.mysweetie.java.test; 2 3 import java.util.concurrent.ArrayBlockingQueue; 4 import java.util.concurrent.ThreadPoolExecutor; 5 import java.util.concurrent.TimeUnit; 6 7 /** 8 * @author wangzhengyang.pt 9 * 使用TreadPool时的ThreadLocal示例10 */11 public class TestThreadPool {12 13 priva... 阅读全文
posted @ 2011-11-11 17:10 Goofy 阅读(709) 评论(0) 推荐(0) 编辑
  2011年7月24日
摘要: 目录综述MavenMaven基础POM基础依赖管理Webx一分钟Webx框架开发处理页面的基本流程(Turbine)Webx各层我们要做的工作的工作Webx框架初探Webx的基本概念Webx项目目录结构Webx应用启动流程Webx响应和处理请求的流程VelocityIbatisIbatis的作用Ibatis的配置参考资料1. 综述这两周的时间,通过看指南,看代码,跑实例,对淘宝网web应用开发框架有了一个整体的初步认识,主要包括四个方面:Ø 项目管理工具MavenØ MVC框架Webx。Ø Webx中的View层实现——VelocityØ Webx中的M 阅读全文
posted @ 2011-07-24 20:12 Goofy 阅读(5582) 评论(0) 推荐(2) 编辑
  2010年10月26日
摘要: #include <stdio.h>#include<malloc.h>#include<stdlib.h>#include<time.h>#define ARR_SIZE 10 //数据数组大小void quickSort(int data[], int low, int high);int partition(int data[], int l... 阅读全文
posted @ 2010-10-26 17:31 Goofy 阅读(163) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<malloc.h>#include<stdlib.h>#include<time.h>#define ARR_SIZE 100int data[ARR_SIZE];void mergeSort(int,int);void merge(int,int,int);int main(){ int i=0,... 阅读全文
posted @ 2010-10-26 17:07 Goofy 阅读(135) 评论(0) 推荐(0) 编辑
  2010年10月19日
摘要: 原文:http://www.blogsdna.com/4560/how-to-enable-concurrent-sessions-for-remote-desktop-in-windows-7-rtm.htmIn past we had posted hack toenable Multiple users access (Concurrent sessions) for Remote desk... 阅读全文
posted @ 2010-10-19 22:11 Goofy 阅读(519) 评论(0) 推荐(0) 编辑
  2010年10月14日
摘要: RT 阅读全文
posted @ 2010-10-14 13:44 Goofy 阅读(131) 评论(0) 推荐(0) 编辑