自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(21)
  • 资源 (11)
  • 收藏
  • 关注

原创 数据库tips 20071029

function java(){ var java = document.getElementById("java"); var dt = document.getElementById("datastructure"); var db = document.getElementById("database"); java.style.display="block";

2007-10-29 11:34:00 621

原创 关于java初始化顺序的一个示例

public class Sample{    public static void main(String[] args){        B ba = new B();                System.out.println("-------------------------------");        B bb = new B();    }};class Target

2007-10-21 22:36:00 733

原创 java tips and items 20071020

function java(){ var java = document.getElementById("java"); var dt = document.getElementById("datastructure"); var db = document.getElementById("database"); java.style.display="block";

2007-10-20 20:58:00 929

原创 面试题汇总

var java = document.getElementById("java"); var dt = document.getElementById("datastructure"); var db = document.getElementById("database");var iq = document.getElementById("iq");function

2007-10-20 17:19:00 637

原创 关于java异常

1 Best Practices for Exception Handlinghttp://www.onjava.com/pub/a/onjava/2003/11/19/exceptions.html 提出设计api时有关exception的最佳实践提出使用exception的最佳实践。同时论述了使用检查型异常与unchecked异常的争论。2 Java 理论与实践: 关于异常的争论h

2007-10-19 14:17:00 637

转载 逐渐挖掘Varargs

逐渐挖掘Varargs更简单的传递个数可变的实参孙海涛 (sun.haitao@126.com)2004年8月5日最初发表,2004年8月19日最后修订J2SE 1.5提供了“Varargs”机制。借助这一机制,可以定义能和多个实参相匹配的形参。从而,可以用一种更简单的方式,来传递个数可变的实参。本文介绍这一机制的使用方法,以及这一机制与数组、泛型、重载之间的相互作用时的若干问题。

2007-10-18 22:05:00 742

原创 学习uml2(不全)part1 (也许有part2)

  UML 2.0 学习《Learning UML 2.0》1.Use case descriptionThe series of examples bellow describe cases from the basic to the complicated. And a mode of use case template is introduced which is a won

2007-10-17 13:03:00 1463

转载 ant中classpath

 path id="classpath">        构建文件最经典的classpath,其中id为类路径的名称            fileset dir="${web.dir}/WEB-INF/lib">            include name="*.jar"/>        fileset>       向classpath中加入Web应用程序下的类库      

2007-10-16 22:48:00 1966

转载 常见排序代码集合-java

import java.io.*;import java.util.*;import java.lang.*;public class pGeneralSorting{ public static void BubbleSort(Comparable[] a){ boolean switched = true; for(int i=0;i s

2007-10-16 09:43:00 711

原创 推荐:东南大学在线课件

http://course.cugnc.com/21cn/  </div>

2007-10-15 20:28:00 1392

转载 如何在uml中表达jsp和servlet

http://www.jguru.com/faq/view.jsp?EID=334159Answer As such, there are no specific notations for Servlets and JSPs in standard UML. But you can create the sterotypes for these elements. For exam

2007-10-14 21:05:00 1517

原创 Ant资料and tips

 1入门资料略2 书ant:the definitive guid, ant in action, java development with ant3 task列表http://ant.apache.org/manual/tasksoverview.html4 只指定file,这样没有文件夹,只是文件。

2007-10-14 14:07:00 620

原创 css资料

http://www.52css.com/http://www.blueidea.com/common/searchbykey.asp?keyword=css

2007-10-13 02:57:00 649

原创 spring web mvc资料

1 Developing a Spring Framework MVC application step-by-stephttp://www.springframework.org/docs/MVC-step-by-step/Spring-MVC-step-by-step.html

2007-10-11 20:34:00 728

转载 cactus+jetty+eclipse测试时的Connection refused问题

http://www.manning-sandbox.com/thread.jspa?messageID=483 

2007-10-11 20:13:00 1998

原创 JUnit Recipes

<v:shapetype id="_x0000_t75"coordsize="21600,21600" o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"filled="f" stroked="f"><v:shape id="_x0000_i102

2007-10-08 22:07:00 685

原创 Professional Java Development with the Spring Framework

 理论深入:细节讲述到位,比spring in action更深入细致,比大多数书到位。操作性好, 建议有spring基础的提高使用。让你清楚spring中各技术的原理,来龙去脉,直达专家级水平。<v:shapetype id="_x0000_t75"coordsize="21600,21600" o:spt="75" o:preferrelative="t" path

2007-10-08 16:11:00 903

原创 数据库教程,挺全面

http://jsjx.hxu.edu.cn/ctsn/sjkyl/index.htm

2007-10-07 21:52:00 716

原创 关于《java程序员面试宝典》的评价--一起来找茬吧

1 就关注领域而言,市场上绝无仅有2 就关注范围而言,似乎全面3 就内容质量而言,错误层出不穷4 就个人而言,对我最有用的是《求职过程》和《英语面试》,另外见识一下题型也是有必要的。5 一边看书,一边找茬,其乐无穷。

2007-10-05 14:42:00 1491

转载 POJO的解释(最接近出处,目前所见最准确)

http://c2.com/cgi/wiki?PlainOldJavaObject Plain Old Java Object POJO = "Plain Old Java Object". Term coined by MartinFowler, RebeccaParsons?, and JoshMacKenzie to denote a normal Java object tha

2007-10-05 13:46:00 809

原创 httpunit资源

1 Test Web applications with HttpUnit(太简单,有些技巧总结)http://www.javaworld.com/javaworld/jw-04-2004/jw-0419-httpunit.html?page=12 offical tutorialhttp://www.httpunit.org/doc/tutorial/task1.html3

2007-10-03 21:19:00 857

POSTGRESQL_Explaining_EXPLAIN.pdf

POSTGRESQL_Explaining_EXPLAIN.pdf

2022-08-03

Continuous Integration: Improving Software Quality and Reducing Risk

Continuous Integration: Improving Software Quality and Reducing Risk

2010-03-07

Agile Estimating and Planning

Agile Estimating and Planning

2010-03-02

Practices of an Agile Developer: Working in the Real World

Practices of an Agile Developer: Working in the Real World,高效程序员的45个习惯:敏捷开发修炼之道

2010-02-14

Jakarta.Commons.Cookbook

Jakarta.Commons.Cookbook

2010-02-07

pearson.education.agile.project.management.creating.innovative.products.apr.2004.ebook-ddu.chm

up, pearson.education.agile.project.management.creating.innovative.products.apr.2004.ebook-ddu.chm

2010-02-07

jsp技术大全003-结束(pdf版)

jsp技术大全003-结束(pdf版)

2007-10-29

jsp技术大全002(pdf版)

jsp技术大全002(pdf版)

2007-10-29

jsp技术大全001(pdf版)

jsp技术大全(pdf版),自己做的pdf版,效果一般,不过对不习惯pdg的人算不错了。

2007-10-29

空空如也

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

TA关注的人

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