自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(12)
  • 资源 (4)
  • 收藏
  • 关注

转载 Top Ten Tips for Bug Tracking

1. A good tester will always try to reduce the repro steps to theminimal steps to reproduce; this is extremely helpful for theprogrammer who has to find the bug.2. Remember that the only per

2010-01-26 13:31:00 747

Top Ten Tips for Bug Tracking

1. A good tester will always try to reduce the repro steps to theminimal steps to reproduce; this is extremely helpful for theprogrammer who has to find the bug.2. Remember that the only perso...

2010-01-26 13:31:00 108

Top Ten Tips for Bug Tracking

1. A good tester will always try to reduce the repro steps to theminimal steps to reproduce; this is extremely helpful for theprogrammer who has to find the bug.2. Remember that the only perso...

2010-01-26 13:31:00 126

转载 Java ServletContext 详解

ServletContext,是一个全局的储存信息的空间,服务器开始,其就存在,服务器关闭,其才释放。request,一个用户可有多个;session,一个用户一个;而servletContext,所有用户共用一个。所以,为了节省空间,提高效率,ServletContext中,要放必须的、重要的、所有用户需要共享的线程又是安全的一些信息。换一种方式说吧,运行在JAVA虚拟机中的每一个Web应用

2010-01-19 22:41:00 21053

Java ServletContext 详解

ServletContext,是一个全局的储存信息的空间,服务器开始,其就存在,服务器关闭,其才释放。request,一个用户可有多个;session,一个用户一个;而servletContext,所有用户共用一个。所以,为了节省空间,提高效率,ServletContext中,要放必须的、重要的、所有用户需要共享的线程又是安全的一些信息。换一种方式说吧,运行在JAVA虚拟机中的每一个Web应用...

2010-01-19 22:41:00 129

Java ServletContext 详解

ServletContext,是一个全局的储存信息的空间,服务器开始,其就存在,服务器关闭,其才释放。request,一个用户可有多个;session,一个用户一个;而servletContext,所有用户共用一个。所以,为了节省空间,提高效率,ServletContext中,要放必须的、重要的、所有用户需要共享的线程又是安全的一些信息。换一种方式说吧,运行在JAVA虚拟机中的每一个Web应用...

2010-01-19 22:41:00 118

转载 java中如何获得操作系统下用户目录

String usrHome = System.getProperty("user.home");下面是System的参数列表Key                     Meaning -------------------     ------------------------------ "file.separator"

2010-01-18 08:21:00 17369

java中如何获得操作系统下用户目录

String usrHome = System.getProperty("user.home");下面是System的参数列表Key Meaning ------------------- ------------------------------ "file.separator" File separator (e.g., ...

2010-01-18 08:21:00 106

java中如何获得操作系统下用户目录

String usrHome = System.getProperty("user.home");下面是System的参数列表Key Meaning ------------------- ------------------------------ "file.separator" File separator (e.g., ...

2010-01-18 08:21:00 97

原创 先刹车后离合

“城市低速行驶40左右的速度,先离后刹没什么的,速度低几乎一踩就停,.高速就要先刹后离了,比如说100多码的速度,肯定踩刹到40样子,补脚离合降档.”  “只要一松油门,脚就要放在刹车板上,不能留在油门板那里歇着。”10年前教练在车上对我说了很多经验,这句我记住了” 车速慢,可以离合刹车一起踩,,,车速快,踩刹车就会丢油门,车子速度会受发动机和变速箱牵制有所

2010-01-04 11:24:00 2294

先刹车后离合

“城市低速行驶40左右的速度,先离后刹没什么的,速度低几乎一踩就停,.高速就要先刹后离了,比如说100多码的速度,肯定踩刹到40样子,补脚离合降档.”“只要一松油门,脚就要放在刹车板上,不能留在油门板那里歇着。”10年前教练在车上对我说了很多经验,这句我记住了”车速慢,可以离合刹车一起踩,,,车速快,踩刹车就会丢油门,车子速度会受发动机和变速箱牵制有所减缓,...

2010-01-04 11:24:00 164

先刹车后离合

“城市低速行驶40左右的速度,先离后刹没什么的,速度低几乎一踩就停,.高速就要先刹后离了,比如说100多码的速度,肯定踩刹到40样子,补脚离合降档.”“只要一松油门,脚就要放在刹车板上,不能留在油门板那里歇着。”10年前教练在车上对我说了很多经验,这句我记住了”车速慢,可以离合刹车一起踩,,,车速快,踩刹车就会丢油门,车子速度会受发动机和变速箱牵制有所减缓,...

2010-01-04 11:24:00 102

Struts2 Design And Programming

Overview Offering both theoretical explanations and real-world applications, this in-depth guide covers the 2.0 version of Struts, revealing how to design, build, and improve Java-based Web applications within the Struts development framework. Feature functionality is explained in detail to help programmers choose the most appropriate feature to accomplish their objectives, while other chapters are devoted to file uploading, paging, and object caching.

2009-05-17

XML Generation By Java

Different way to generate xml. DOM, SAX, JAXP

2009-05-17

JUnit Recipes

As Test-Driven Development practitioners, we have a tendency to write about JUnit exclusively as a tool for writing Object Tests. Because much of the JUnit community intersects with the TDD community, this seems like a reasonable thing to do; however, you may not be a TDD practitioner. Your current project may use JUnit, but only to write tests for existing code or to write tests at a higher-level view of the system than its objects. We would hate to leave you out of the conversation, as JUnit is certainly suitable for writing other kinds of tests.

2008-11-27

远程镜像与备份SVN 服务器

远程镜像与备份SVN 服务器 此文讲述SVN 如何镜像服务器,注意是单向镜像。众所周知,SVN 有自已的镜像命令

2008-11-27

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除