KK

Kim-'s-Blog.Object-Everything.I'm POJO.

.紀-錄.爲了忘卻的記憶..真的勇士,要敢于直面遇到的問題,敢于正視繁雜的原碼......在實踐中積累!

  BlogJava :: 首页 :: 联系 :: 聚合  :: 管理
  74 Posts :: 1 Stories :: 70 Comments :: 0 Trackbacks

#

http://hashkiller.com/password/
Password:sa
 
Common Hashes
 
md5: c12e01f2a13ff5587e1e9e4aedb8242d
md4: f9145896fbc42dac61e7fdeeef2f9938
md2: cdfed67a6621b8b97c5e58c5fd6d6b86
sha1: 3608a6d1a05aba23ea390e5f3b48203dbb7241f7
sha256: 4cf6829aa93728e8f3c97df913fb1bfa95fe5810e2933a05943f8312a98d9cf2
sha384: 4b7d79fd9e55caac33d50b5d5337899adc8be5e7a1c55446f514104a427cf9859c47284a663af817bd3b2478a578ea4e
sha512 30a76625d5fc75e3ab6793b19819935e65e43cf3745832061cb432a5de7fdc17d66ede
77973d5aed065bc7e3e0536ebcc5129506955574e230b92b71bd2cb1c7
LM: 551ad95ba854afdcaad3b435b51404ee
NT: 9cb285c0622b8e5e8181a2b3d1654c17
base_64: c2E=
rot_13: fn

http://hashkiller.com/   
还可以
MD5反编译
posted @ 2008-07-15 15:05 Kim' 阅读(551) | 评论 (0)编辑 收藏

在CXF Client 调用是总是出现这个错误。
我用的是JDK6.0
org.apache.xerces.jaxp.DocumentBuilderFactoryImpl
变成了
com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl
加一句
System.setProperty("javax.xml.parsers.DocumentBuilderFactory", "com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl");
不会出现这个错误
但会
java.lang.NoSuchMethodError: javax.xml.parsers.DocumentBuilderFactory.getSchema()Ljavax/xml/validation/Schema;
连方法都变了 晕哦


posted @ 2008-03-20 14:21 Kim' 阅读(6942) | 评论 (1)编辑 收藏

在往Spring2.0项目中添加XFire时(Myeclipse)出现如下错误
Document root element "beans", must match DOCTYPE root "null".
原因:XFire Core lib 中有Spring1.2.6 与Spring 2 冲突!
posted @ 2008-03-18 10:06 Kim' 阅读(5712) | 评论 (4)编辑 收藏

可以这样写:
execution(* com.foo..*.*(..)) and !execution(* com.foo.bar..*.*(..)).

every method in com.foo but not in com.foo.bar.
posted @ 2008-03-13 11:36 Kim' 阅读(4035) | 评论 (0)编辑 收藏

封装有它的好处,使用封装可以掩盖细节,(如Spring.JSF.Hibernate.Spring还会留好多回调接口),对于封装我的看法是:要做到 想进就进,想出就出,随心所欲。提升自己的境界。(最近在做一个框架有感)
posted @ 2008-03-11 20:52 Kim' 阅读(167) | 评论 (0)编辑 收藏

要回武汉了,告别深圳中...
最近很忙的,以后有时间一定常来看看

posted @ 2008-02-23 10:19 Kim' 阅读(138) | 评论 (0)编辑 收藏

When a method is idempotent, in short, you are guaranteeing that regardless of when or how often it's used, no "side effects" will occur.

對每一個相同的query string
不管你執行多少次
所得到的結果要一樣

doPost()

This method does not need to be either safe or idempotent. Operations requested through POST can have side effects for which the user can be held accountable, for example, updating stored data or buying items online.




posted @ 2007-04-24 10:17 Kim' 阅读(410) | 评论 (0)编辑 收藏

     摘要: Dos命令有必要再复习下...
Ant 有可能用到。
------------------------------------------------------------------------------
第1、最常用的命令
  cd     改变当前目录       sys   制作DOS系统盘

  copy    拷贝文件         del   删除文件

  deltree   删除目录树        dir   列文件名

  diskcopy  制磁盘          edit  文本编辑

  format    格式化磁盘        md   建立子目录

  mem     查看内存状况       type  显示文件内容

  rd     删除目录         ren   改变文件名 ..........
  阅读全文
posted @ 2007-04-14 11:15 Kim' 阅读(437) | 评论 (0)编辑 收藏

Distributed Computing: an abstract concept. Very general.


Cluster: tightly-coupled distributed computing. A Cluster is usually inside the same room, using same computers, same OSs, connected using dedicated clustering software.


Grid: loosely-coupled distributed computing. A Grid is usally dispersed anywhere far-away from each other, and you do not know what computers, what OS on each node, you only know they communicate via HTTP(s)/XML in a black-box style. More flexible.


Parallel Computing: very tightly-coupled distributed computing, like a few CPUs inside a PC. Parallelism was a dream in 1980-1990 but that concept failed, because many things cannot be split into parallel tasks. The overhead to write parallel algorithm is tramendous. People no longer use this term much these years.


P2P: an extremely loosely-coupled distributed computing. Since the name was ruined by Napster, people try to avoid using this term in their serious projects.


In particular, for Cluster vs. Grid, I have some further comparison:


Cluster: PCs inside a same locked room; Grid: distributed, not in same room.


Cluster: ususally same OS, same machines; Grid: very different unknown platforms;


Cluster: tightly-coupled system; Grid: loosely-coupled system.


Cluster: bound together by TCP/IP on LAN; Grid: connected by HTTP/XML on WAN.


Cluster: like teamwork; Grid: like collaboration

posted @ 2007-03-27 11:51 Kim' 阅读(684) | 评论 (0)编辑 收藏

Hibernate
Ibatis

出现N+1  Select时,可以通过外连接,或写Procedure解决。

posted @ 2007-03-27 10:50 Kim' 阅读(209) | 评论 (0)编辑 收藏

仅列出标题
共8页: 上一页 1 2 3 4 5 6 7 8 下一页 
jj