<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    KK

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

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

      BlogJava :: 首頁 :: 聯(lián)系 :: 聚合  :: 管理
      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' 閱讀(557) | 評論 (0)編輯 收藏

    在CXF Client 調(diào)用是總是出現(xiàn)這個錯誤。
    我用的是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");
    不會出現(xiàn)這個錯誤
    但會
    java.lang.NoSuchMethodError: javax.xml.parsers.DocumentBuilderFactory.getSchema()Ljavax/xml/validation/Schema;
    連方法都變了 暈哦


    posted @ 2008-03-20 14:21 Kim' 閱讀(6953) | 評論 (1)編輯 收藏

    在往Spring2.0項目中添加XFire時(Myeclipse)出現(xiàn)如下錯誤
    Document root element "beans", must match DOCTYPE root "null".
    原因:XFire Core lib 中有Spring1.2.6 與Spring 2 沖突!
    posted @ 2008-03-18 10:06 Kim' 閱讀(5723) | 評論 (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' 閱讀(4044) | 評論 (0)編輯 收藏

    封裝有它的好處,使用封裝可以掩蓋細節(jié),(如Spring.JSF.Hibernate.Spring還會留好多回調(diào)接口),對于封裝我的看法是:要做到 想進就進,想出就出,隨心所欲。提升自己的境界。(最近在做一個框架有感)
    posted @ 2008-03-11 20:52 Kim' 閱讀(171) | 評論 (0)編輯 收藏

    要回武漢了,告別深圳中...
    最近很忙的,以后有時間一定常來看看

    posted @ 2008-02-23 10:19 Kim' 閱讀(141) | 評論 (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
    不管你執(zhí)行多少次
    所得到的結(jié)果要一樣

    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' 閱讀(413) | 評論 (0)編輯 收藏

         摘要: Dos命令有必要再復(fù)習(xí)下...
    Ant 有可能用到。
    ------------------------------------------------------------------------------
    第1、最常用的命令
      cd     改變當(dāng)前目錄       sys   制作DOS系統(tǒng)盤

      copy    拷貝文件         del   刪除文件

      deltree   刪除目錄樹        dir   列文件名

      diskcopy  制磁盤          edit  文本編輯

      format    格式化磁盤        md   建立子目錄

      mem     查看內(nèi)存狀況       type  顯示文件內(nèi)容

      rd     刪除目錄         ren   改變文件名 ..........
      閱讀全文
    posted @ 2007-04-14 11:15 Kim' 閱讀(441) | 評論 (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' 閱讀(686) | 評論 (0)編輯 收藏

    Hibernate
    Ibatis

    出現(xiàn)N+1? Select時,可以通過外連接,或?qū)慞rocedure解決。

    posted @ 2007-03-27 10:50 Kim' 閱讀(216) | 評論 (0)編輯 收藏

    僅列出標題
    共8頁: 上一頁 1 2 3 4 5 6 7 8 下一頁 
    jj
    主站蜘蛛池模板: 亚洲国产人成精品| 日韩成人在线免费视频| 国产精品亚洲综合一区| 国产精品成人亚洲| 色吊丝永久在线观看最新免费| 直接进入免费看黄的网站| 免费电影在线观看网站| 久久99亚洲网美利坚合众国| 中文字幕免费播放| 亚洲欧洲日产国码无码久久99| 久久亚洲综合色一区二区三区 | 亚洲综合色一区二区三区| 7x7x7x免费在线观看| 亚洲AV日韩精品久久久久久久| 学生妹亚洲一区二区| 999在线视频精品免费播放观看| 在线免费观看中文字幕| 亚洲精品WWW久久久久久| 免费无码国产V片在线观看| 亚洲人成影院在线无码观看| 国产精品内射视频免费| 久久久亚洲欧洲日产国码农村| 久久无码av亚洲精品色午夜| 国产色婷婷精品免费视频| 精品免费AV一区二区三区| 亚洲真人无码永久在线| 久久免费的精品国产V∧| 亚洲国产区男人本色在线观看| 国内精品99亚洲免费高清| 国产亚洲综合一区柠檬导航| 91在线老王精品免费播放| 亚洲午夜精品久久久久久app| 6080午夜一级毛片免费看6080夜福利| 日本午夜免费福利视频| 一道本在线免费视频| 亚洲精品福利视频| 成年女人毛片免费播放人| 国产免费一区二区三区免费视频| 成人免费在线观看网站| 香蕉97碰碰视频免费| 亚洲综合国产精品|