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

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

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

    Chan Chen Coding...

    Scala / Java

    SPARK環(huán)境搭建-WINDOWS版本

    posted @ 2014-02-14 16:21 Chan Chen 閱讀(3035) | 評論 (0)  編輯

    Java CyclicBarrier介紹

    posted @ 2013-05-22 09:57 Chan Chen 閱讀(365) | 評論 (0)  編輯

    Java 枚舉7常見種用法
         摘要: DK1.5引入了新的類型——枚舉。在 Java 中它雖然算個“小”功能,卻給我的開發(fā)帶來了“大”方便。  閱讀全文

    posted @ 2013-05-15 19:57 Chan Chen 閱讀(249) | 評論 (0)  編輯

    JVM參數設定

    posted @ 2013-05-09 18:17 Chan Chen| 編輯

    spring mvc singleton的驗證

    posted @ 2013-05-05 13:49 Chan Chen 閱讀(672) | 評論 (0)  編輯

    Java關鍵字final、static使用總結
         摘要:  根據程序上下文環(huán)境,Java關鍵字final有“這是無法改變的”或者“終態(tài)的”含義,它可以修飾非抽象類、非抽象類成員方法和變量。你可能出于兩種理解而需要阻止改變:設計或效率。
    final類不能被繼承,沒有子類,final類中的方法默認是final的。 final方法不能被子類的方法覆蓋,但可以被繼承。 final成員變量表示常量,只能被賦值一次,賦值后值不再改變。 final不能用于修飾構造方法。 注意:父類的private成員方法是不能被子類方法覆蓋的,因此private類型的方法默認是final類型的。  閱讀全文

    posted @ 2013-05-04 15:10 Chan Chen 閱讀(198) | 評論 (0)  編輯

    Spring Quartz Corn Expression
         摘要: cron is a UNIX tool that has been around for a long time, so its scheduling capabilities are powerful and proven. TheCronTrigger class is based on the scheduling capabilities of cron.
    CronTrigger uses "cron expressions", which are able to create firing schedules such as: "At 8:00am every Monday through Friday" or "At 1:30am every last Friday of the month".
    Cron expressions are powerful, but can be pretty confusing. This tutorial aims to take some of the mystery out of creating a cron exp  閱讀全文

    posted @ 2013-05-03 16:56 Chan Chen 閱讀(420) | 評論 (0)  編輯

    Jps介紹以及解決jps無法查看某個已經啟動的java進程問題
         摘要: jps類似linux的ps命令,不同的是ps是用來顯示進程,而jps只顯示java進程,準確的說是當前用戶已啟動的部分java進程信息,信息包括進程號和簡短的進程command。  閱讀全文

    posted @ 2013-04-26 19:35 Chan Chen 閱讀(404) | 評論 (0)  編輯

    關于memcache取多值的性能比較
         摘要: 一次取多值的性能要高于多次取值  閱讀全文

    posted @ 2013-04-26 15:42 Chan Chen 閱讀(312) | 評論 (0)  編輯

    Pool resources using Apache's Commons Pool Framework
         摘要: Resource usage could prove critical at times for heavy-duty applications. Some famous Websites have shut down because of their inability to handle heavy loads. Most problems related to heavy loads can be handled, at a macro level, using clustering and load-balancing capabilities. Concerns remain at the application level with respect to excessive object creation and the availability of limited server resources like memory, CPU, threads, and database connections, which could represent potential bo  閱讀全文

    posted @ 2013-04-18 17:03 Chan Chen 閱讀(326) | 評論 (0)  編輯

    SEVERE: Error listenerStart
         摘要: Occurs when an exception is thrown in the contextInitialized method of a ServletContextListener  閱讀全文

    posted @ 2013-03-24 14:10 Chan Chen 閱讀(232) | 評論 (0)  編輯

    Avoiding the "javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated" with HttpClient
         摘要: When developing a https application, your test server often doesn't have a (valid) SSL certificate. This will cause the following exception to be thrown when connecting your client to the test server: "javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated".  閱讀全文

    posted @ 2013-02-23 11:50 Chan Chen 閱讀(1903) | 評論 (0)  編輯

    Java by value or by reference
         摘要: Java 操縱對象都是通過引用來實現的,所有的對象變量都是所指向的對象的引用,那也就是說所有對象變量的值并不是它所指向的對象本身,而是該對象的引用,這句話聽起來可能有點讓人犯暈,舉個例子來說,String str = new String("aaa"); 這條語句的意思是 new 了一個值為 "aaa" 的字符串對象,然后用一個名字叫 str 的對象變量來指向它,保存它的引用  閱讀全文

    posted @ 2013-02-01 11:20 Chan Chen 閱讀(210) | 評論 (0)  編輯

    使用Log4j
         摘要: Log4j可以幫助調試(有時候debug是發(fā)揮不了作 用的)和分析,要下載和了解更詳細的內容.  閱讀全文

    posted @ 2013-01-09 14:39 Chan Chen 閱讀(207) | 評論 (0)  編輯

    Spring AOP
         摘要: AOP技術即(面向切面編程)技術是在面向對象編程基礎上的發(fā)展,AOP技術是對所有對象或一類對象編程。核心是在不增加代碼的基礎上,還增加了新的功能。AOP編程在開發(fā)框架本身用的比較多,而實際項目中,用的比較少。它是將分散在各個業(yè)務邏輯代碼中的相同代碼抽取出來形成一個獨立的模塊。  閱讀全文

    posted @ 2012-12-27 11:30 Chan Chen 閱讀(216) | 評論 (0)  編輯

    Understand JPA
         摘要: Need three artifacts to implement a JPA-compliant program:

    An entity class
    A persistence.xml file
    A class through which you will insert, update, or find an entity
    JPA is all about data persistence, so let's begin our examination of how it works with the data store design. Assume you have a CUSTOMER table, as in Table 1 below.  閱讀全文

    posted @ 2012-12-24 17:12 Chan Chen 閱讀(489) | 評論 (0)  編輯

    Understand The SerialVersionUID
         摘要: The serialVersionUID is used as a version control in a Serializable class. If you do not explicitly declare a serialVersionUID, JVM will do it for you automatically, based on various aspects of your Serializable class, as described in the Java(TM) Object Serialization Specification.  閱讀全文

    posted @ 2012-11-28 12:01 Chan Chen 閱讀(390) | 評論 (0)  編輯

    Runnable Callable Future and Executor in Java
         摘要: Executor就是Runnable和Callable的調度容器,Future就是對于具體的調度任務的執(zhí)行結果進行查看,最為關鍵的是Future可以檢查對應的任務是否已經完成,也可以阻塞在get方法上一直等待任務返回結果。Runnable和Callable的差別就是Runnable是沒有結果可以返回的,就算是通過Future也看不到任務調度的結果的。   閱讀全文

    posted @ 2012-11-26 11:59 Chan Chen 閱讀(362) | 評論 (0)  編輯

    Java中的getName(), .class 和forName()的區(qū)別

    posted @ 2012-11-23 23:09 Chan Chen 閱讀(795) | 評論 (0)  編輯

    Question Mark ? in Java

    posted @ 2012-11-23 15:47 Chan Chen 閱讀(269) | 評論 (0)  編輯

    Understand TheadLocal

    posted @ 2012-11-23 11:24 Chan Chen 閱讀(615) | 評論 (0)  編輯

    μJavaActors

    posted @ 2012-11-20 15:33 Chan Chen 閱讀(391) | 評論 (0)  編輯

    對象的串行化(Serialization)

    posted @ 2012-11-13 11:04 Chan Chen 閱讀(163) | 評論 (0)  編輯

    notify() and wait()

    posted @ 2012-11-03 11:18 Chan Chen 閱讀(201) | 評論 (0)  編輯

    hashcode() and equal()

    posted @ 2012-11-03 11:00 Chan Chen 閱讀(288) | 評論 (0)  編輯

    Spring依賴注入的三種方式

    posted @ 2012-11-03 09:12 Chan Chen 閱讀(5238) | 評論 (0)  編輯

    show java gc log

    posted @ 2012-08-31 16:03 Chan Chen 閱讀(316) | 評論 (0)  編輯

    Eclipse Memory Analyzer介紹

    posted @ 2012-08-30 13:58 Chan Chen 閱讀(3847) | 評論 (0)  編輯

    Increase Console Output in Eclipse

    posted @ 2012-08-17 13:23 Chan Chen 閱讀(175) | 評論 (0)  編輯

    memory leak tools

    posted @ 2012-07-19 03:00 Chan Chen 閱讀(213) | 評論 (0)  編輯

    Virtual Machine Garbage Collection Tuning

    posted @ 2012-07-18 08:29 Chan Chen 閱讀(302) | 評論 (0)  編輯

    Java Properties file examples

    posted @ 2012-06-07 13:05 Chan Chen 閱讀(361) | 評論 (0)  編輯

    Eclipse HotKey

    posted @ 2012-06-05 04:48 Chan Chen 閱讀(116) | 評論 (0)  編輯

    Java Thread Pool

    posted @ 2012-06-04 03:58 Chan Chen 閱讀(1594) | 評論 (0)  編輯

    dom4j創(chuàng)建xml

    posted @ 2012-05-02 11:51 Chan Chen 閱讀(1511) | 評論 (0)  編輯

    Morphia Java DAO

    posted @ 2012-04-14 01:04 Chan Chen 閱讀(624) | 評論 (0)  編輯

    SBT Starting Guide

    posted @ 2012-04-08 12:34 Chan Chen 閱讀(149) | 評論 (0)  編輯

    Java Exception FAQ Collection (On Going)

    posted @ 2012-03-13 09:36 Chan Chen 閱讀(180) | 評論 (0)  編輯

    Scala First Taste

    posted @ 2012-02-25 21:50 Chan Chen 閱讀(232) | 評論 (0)  編輯

    Tutorial: Play Framework, JPA, JSON, jQuery, & Heroku

    posted @ 2012-02-24 22:46 Chan Chen 閱讀(1070) | 評論 (0)  編輯

    Java Reflection

    posted @ 2012-02-18 15:50 Chan Chen 閱讀(542) | 評論 (0)  編輯

    Understand Dependency Injection

    posted @ 2012-02-18 15:49 Chan Chen 閱讀(140) | 評論 (0)  編輯

    Why Did I Fall in Love with Play Framework

    posted @ 2012-02-18 15:47 Chan Chen 閱讀(166) | 評論 (0)  編輯

    Start Avoiding Some Java 5 Coding Pitfalls

    posted @ 2012-02-18 15:46 Chan Chen 閱讀(211) | 評論 (0)  編輯

    Wiquery Quick Start

    posted @ 2011-08-12 12:31 Chan Chen 閱讀(1013) | 評論 (1)  編輯

    主站蜘蛛池模板: 免费在线观看黄网站| 国产不卡免费视频| 亚洲美女自拍视频| 久操视频在线免费观看| 久久亚洲国产成人亚| 91免费在线播放| 亚洲国产精品免费在线观看| 1000部免费啪啪十八未年禁止观看 | 国产高清不卡免费在线| 亚洲视频一区在线播放| 18以下岁毛片在免费播放| 亚洲精品视频在线观看视频| 丁香花免费高清视频完整版| 亚洲人成网国产最新在线| 日本免费无遮挡吸乳视频电影| 黑人粗长大战亚洲女2021国产精品成人免费视频 | 成人黄色免费网址| 亚洲依依成人亚洲社区| 在线观看免费国产视频| 成人a毛片视频免费看| 亚洲va中文字幕无码久久 | 亚洲精品乱码久久久久蜜桃| 免费在线观看h片| 33333在线亚洲| 免费国产成人高清视频网站| 精品国产污污免费网站入口| 亚洲成人精品久久| 在线观看特色大片免费视频| 亚洲日韩在线中文字幕综合 | 亚洲v高清理论电影| 免费在线视频你懂的| 久久久久久亚洲精品无码| 国产性爱在线观看亚洲黄色一级片 | 亚洲国产精品无码久久久| 日本xxwwxxww在线视频免费| 中文字幕手机在线免费看电影| 亚洲AV无码国产精品色午友在线| 欧洲一级毛片免费| 春意影院午夜爽爽爽免费| 亚洲一级毛片在线观| 久久亚洲精品无码观看不卡|