`
Roader123
  • 浏览: 92343 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论
文章列表

SOA

SOA is not simply a technology or a product: it's a style of design, with many aspects (such as architectural, methodological and organisational) unrelated to the actual technology.   Integrated design, reuse of existing IT investments and above all, industry standards are the elements needed to cr ...

Standards

Standards are important. However, history has shown/proven that standards/specifications come and go, whereas requirements persist. So, for example, in the case of transactions, we've had A, B, C, D, but at their core they are doing the same thing. Messaging is another good example: A, B, C, etc. Hen ...

Bubble=Sort

public class BubbleSort { /** * @param args */ public static void main(String[] args) { int[] a = {10,5,2,3,345,67,90};//7 BubbleSort(a); // 1. 10,5,3,345,67,90,2 //. } public static void BubbleSort(int a []){ int temp=0; int count=0; for (int i = 0; i < ...
http://xwood.iteye.com/blog/646288   一般情况下:        引用 equa: 比较“地址+内容” ==:比较地址  String为final类型,其对象按常量处理,创建后就不能再改变。另外,字符串常量在进行“+”运算时则完成拼接,变量是调用ap ...
    http://hi.baidu.com/%CE%D2%D7%D4%CE%DE%BB%DA
  http://www.cnblogs.com/taotaoblog/archive/2009/09/19/1569958.html   http://hi.baidu.com/%CE%D2%D7%D4%CE%DE%BB%DA/blog/item/5ba64f90a68dab8aa877a45a.html   1、 继承和实现区别 Hashtable是基于陈旧的Dictionary类,完成了Map接口;HashMap是Java 1.2引进的Map接口的一个实现(HashMap继承于AbstractMap,AbstractMap完成了Map接口)。 2、 线程安全不同 Has ...
/** @version 1.00 2000-01-27 @author Cay Horstmann */ public class ParamTest { public static void main(String[] args) { /* Test 1: Methods can't modify numeric parameters */ System.out.println("Testing tripleValue:"); double percent ...
        对一个对象进行操作时,我们真正操作的是它的句柄。所以倘若“从一个对象到另一个对象”赋值,实际就是将句柄从一个地方复制到另一个地方。这意味着假若为对象使用“C=D”,那么C和D最终都会指向最初只有D才指 ...
public class StaticTest { /** * @param args */ public static void main(String[] args) { //A a = null;// new A();// TODO Auto-generated method stub A a = new B(); A b = new A(); B bb = new B(); } } class A { static { System.out.println("static A "); } p ...

先介绍几本SQL 书

    博客分类:
  • SQL
1。SQL Cookbook 中文版 2。SQL Hacks.
http://iask.sina.com.cn/b/12349573.html   JSF ,java Server Faces,他与struts一样都是web应用框架,但他们是两种不同性质的框架!struts只是单纯的MVC模式框架(MVC就不用多解释了 吧,j2ee常见的设计模式),而JSF是一种事件驱动型的组件模型! 大家都知道应用程序的开发有两种B/S(浏览器/服务器)和C/S(客户端/服务器端),JSF就是将C/S开发中的界面引入了B/S开发中,然后为界面 上的每一个控件都提供事件侦听器!通过JSF,可以在网页上使用WEB组件来捕获用户行为产生的事件.使 ...
http://hi.baidu.com/bladecrazy/blog/item/39b712242aa5f327d507420f.html    

程序员

程序员,若干年前一个听起来冠冕堂皇的工作岗位,   除了少数的总监级的程序员会得到一些东西,   其它人,会失去掉他所有的东西:    青春,朋友,快乐......      几年以后,留下的只有:   长期亚健康状态的身体,朋友们都成家立业和小有成就,孤独的 回忆着过去的很有成就感的代码......      或许程序员,只适合欧美那些靠剥削他国劳力而本国居民无所事事靠码码代码打发时间的国 度。
1. SQL 优化 2. 建索引。在经常访问且数据量大的表的上建索引,在耗资源多的字段上建索引。     。。。。。。。欢迎补充
来自:http://www.iteye.com/topic/661001 1.多where,少having where用来过滤行,having用来过滤组 2.多union all,少union union删除了重复的行,因此花费了一些时间 3.多Exists,少in Exists只检查存在性 ,性能比in强很多,有些朋友 ...
Global site tag (gtag.js) - Google Analytics