相关分类: Java技术 C/C++ VB delphi
  • 扩展Spring系列(2) ---Spring对各种数据访问框架的集

    扩展Spring(2) ---Spring对各种数据访问框架的集成机制 何为数据框架集成。 数据访问框架原本好好的,Spring都干了什么呢? 一是用template类封装了数据框架那些资源获取和异常事务处理的废话代码,而且按照自己的意见给出一些增强函数。 二是将其纳入了Spring的声明式...

    2008-02-23 09:20:39

  • 需要注意自动装拆箱的一个特例

    首先看一段代码(使用JDK 5),如下: public class Test { public static void main(String[] args) { Integer i1 = 127; Integer i2 = 127; if (i1 == i2) System.out.println(Equal!); else System.out.println(Not equal!); } } 输出结果想必大家也知道,是Equal!...

    2008-02-23 09:20:38

  • Java Nested class

    URL : http://java.sun.com/docs/books/tutorial/java/javaOO/nested.html 网上的一些关于内部类的概念是不完整的,还是看看SUN的文档上的标准答案。 ... Like other members, a nested class can be declared static (or not). A static nested class is called just...

    2008-02-23 09:20:36

  • JAVA5 学习(3)

    Enumerations 枚举 Enums很像 public static final int声明,它原来常被用于enum values。它比ints最大的优点在于它是类型安全的,你不能错误的用一种类型代替另一种类型的枚举( Enums) ,不同于ints,他们对编译器来说都是一样的。 Enums只提供了一点点新增的功能。...

    2008-02-23 09:20:35

  • 2006年软件开发技术预测

    The hype surrounding Ajax will slowly fade, as people come to realize that there's really nothing new here, just that DHTML is cool again. As Dion points out, Ajax will become a toolbox that you use in Web development without thinking that I am doin...

    2008-02-23 09:20:33

  • Java关键字: transient | strictfp | volatile

    Java Language Keywords Here's a list of keywords in the Java language. These words are reserved you cannot use any of these words as names in your programs. true , false , and null are not keywords but they are reserved words, so you cannot use them...

    2008-02-23 09:20:33

  • Difference requestDispatcher.forward and response.

    引言 在使用response的过程中经常会遇到跳转页面的事情,这个时候有两种情况供你选择 1。就是调用 ServletContext.getRequestDispatcher(Java.lang.String).forward(request , response) ; 2。就是调用response.setRedirect(),可是这两个方法有什么不同呢? 看看TSS上...

    2008-02-23 09:20:29

  • workflow接口划分

    workflow接口划分 1。应用接口 Application Interface --interface1 工作流自身提供的服务接口 --interface2 工作流与应用之间的接口(主要是提供相关数据的调用接口) 2。扩展接口 PlugIn Interface --interface3 工作流与组织机构之间的接口 --interface4 工...

    2008-02-23 09:20:27

  • JDOM操作XML文件(法老修正版)

    原文:JDOM操作XML文件 地址:http://www.jspcn.net/htmlnews/200120272.html --------------------------------------------------------------------------- 这篇文章讲的不错~把JDOM的基本操作实例化了,不过由于当时的作者用的JDOM版本还比较陈旧,所以部分代码会编...

    2008-02-23 09:20:28

  • 使用标准的KNI增加KVM的系统调用

    使用标准的KNI增加KVM的系统调用 SUN在发布的KVM源代码中其实就已经提供KNI(K Native Interface)这套比较标准的API扩展辅助库。KNI和JNI类似,只是KNI不能象JNI那样外带一个DLL文件,KVM通常都是要烧进嵌入式设备的ROM里面的,所以不能装载KVM之外的本地代码。使用KNI...

    2008-02-23 09:20:23

2