
难点备案
bloodnight
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
jsp页找不到对应class文件
MyEclipse 6.5.0 GA jetty引擎 访问某jsp页并成功运行后,在项目所在文件系统内找不到对应的jsp对应的class文件,为何?2009-11-25 17:01:03 · 285 阅读 · 0 评论 -
Tsung如何测试跨域chat消息
通过tsung对openfire进行性能测试,单服基本没有问题,包括客户端cluster,可以进行登录,聊天,Presence改变等等一系列,但是如果针对跨域的非同服情况,貌似就无能为力了,以下是普通的tsung.xml实例: <?xml version="1.0"?> <!DOCTYPE tsung SYSTEM "/usr/share/tsung/tsun...2009-08-13 09:00:14 · 161 阅读 · 0 评论 -
关于ping不通,WebService却通的问题
我系统是Vista Home Basic SP1,内网机器132.159.×.× ,不能ping通我,但是却能调用我机器上发布的WebService,看来ws和ping没有直接联系了?2009-08-19 09:09:45 · 442 阅读 · 0 评论 -
数组排序开销为何比List要小?
A final approach to achieving failure atomicity is to perform the operation on a temporary copy of the object and to replace the contents of the object with the temporary copy once the operation is ...2009-08-21 17:09:51 · 159 阅读 · 0 评论 -
当Set元素改变时的行为
先看这段程序: import java.util.*; class KeyMaster { public int i; public KeyMaster(int i) { this.i = i; } public boolean equals(Object o) { return i == ((KeyMaster) o).i; } publi...2009-08-26 15:46:07 · 128 阅读 · 0 评论