09 2012 档案
摘要:http://gnucto.blog.51cto.com/3391516/833918http://www.cnblogs.com/kym/archive/2011/03/05/1971604.htmlhttp://www.cnblogs.com/lovecindywang/archive/2010/05/16/1736934.htmlhttp://wenku.baidu.com/view/c19d906db84ae45c3b358c89.htmlhttp://blog.chenlb.com/2010/05/mongodb-vs-mysql-query-performance.htmlhttp
阅读全文
摘要:http://blog.csdn.net/name_110/article/details/7098173 http://blog.csdn.net/rick_123/article/details/6637190http://www.oschina.net/code/snippet_12_1328http://www.oschina.net/code/list/143/lucenehttp://www.oschina.net/code/snippet_12_11710
阅读全文
摘要:http://soulshard.iteye.com/blog/346807http://www.cnblogs.com/HelloCoding/archive/2012/01/19/2327471.htmlhttp://code.google.com/p/file-convert/downloads/detail?name=file-convert1.1.jar&can=2&q=http://www.blogjava.net/RongHao/archive/2007/11/06/158621.html
阅读全文
摘要:http://my.oschina.net/soitravel/blog/35425http://blog.csdn.net/lihailinlihailin/article/details/6949155http://www.blogjava.net/apex/archive/2010/08/06/328168.htmlhttp://blog.csdn.net/yiyi735/article/details/2499099http://www.iteye.com/topic/753133http://blog.csdn.net/hudashi/article/details/6956228h
阅读全文
摘要:http://lzrzhao.iteye.com/blog/430012http://jspengxue.iteye.com/blog/40567http://bigdragon.iteye.com/blog/1635294http://www.blogjava.net/zhuxing/archive/2008/07/24/217285.htmlhttp://blog.sina.com.cn/s/blog_62be49950100na4f.htmlhttp://blog.sina.com.cn/s/blog_56ae1d58010112td.html
阅读全文
摘要:http://stackoverflow.com/questions/402330/is-it-possible-to-add-to-classpath-dynamically-in-javahttp://stackoverflow.com/questions/271506/why-system-setproperty-cannot-change-the-classpath-at-run-time/1198693#1198693http://blog.cedarsoft.com/2010/11/setting-java-library-path-programmatically/http://
阅读全文
摘要:http://stackoverflow.com/questions/5178391/create-simple-pojo-classes-bytecode-at-runtime-dynamically?lq=1http://bbs.mysql.cn/thread-708-1-1.htmlhttp://www.itpub.net/thread-1481390-1-1.html
阅读全文
摘要:http://www.cnblogs.com/hemhem/archive/2011/03/14/2087482.htmlhttps://github.com/svenfuchs/rails-i18nhttp://www.byywee.com/page/M0/S515/515267.htmlhttp://www.flatws.cn/article/program/ruby/2011-05-01/23476.htmlhttp://www.cnblogs.com/tambor/archive/2011/12/25/Ruby_gem_Windows_mysql.htmlhttp://waigo.10
阅读全文
摘要:1、基本概念:http://blog.sina.com.cn/s/blog_5ee047740100pllq.html
阅读全文
摘要:http://docs.oracle.com/cd/B31081_01/idmgr/b28760/appa.htmhttp://fanqiang.chinaunix.net/safe/other/2001-04-19/2399.shtmlhttp://www.cnblogs.com/BoyXiao/archive/2012/02/20/2359273.html
阅读全文
摘要:Mostly buffer space. Say you're sending a constant 10MB/second , and you're only able to consume 5MB/second, the OS and network stack can't keep up, so it will drop the packets - this should be rather obvious. (Which, naturally is different from TCP which provides flow control and retran
阅读全文
摘要:http://stackoverflow.com/questions/410320/what-is-java-written-inhttp://stackoverflow.com/questions/11849073/reading-jvm-heap-bin-file-through-java-program?rq=1http://openjdk.java.net/groups/serviceability/index.html#toolshttp://stackoverflow.com/questions/2279229/how-can-a-jvm-be-written-in-java?rq
阅读全文
摘要:In the first case, the compiler knows that you're trying to unbox a compile-time constant of null. In the second case, the type of the conditional expression is Integer, so you're effectively writing: Integer tmp = new Random().nextBoolean() ? 1 : null;return (int) tmp; ... so the unboxing i
阅读全文
摘要:http://stackoverflow.com/questions/1669/learning-to-write-a-compilerhttp://stackoverflow.com/questions/672577/how-can-i-parse-code-to-build-a-compiler-in-javahttp://stackoverflow.com/questions/1644715/java-string-parsing-k1-v1-k2-v2?rq=1http://stackoverflow.com/questions/2712709/parsing-a-text-file-
阅读全文
摘要:There is no standard Java class or method that will do what you want. Your options include: Select and use some third-party expression evaluation library. For example JEL or any of the half dozen libraries listed here.Wrap the expression in the Java source code for a class with an eval method, se...
阅读全文
摘要:http://blog.csdn.net/viproc/article/details/6675176http://blog.163.com/de_vil_lin/blog/static/573628201262203511983/http://blog.csdn.net/zh291/article/details/4106765http://my.oschina.net/jack230230/blog/65987
阅读全文
摘要:1、http://www.cnblogs.com/wubz/archive/2011/12/22/2297958.html2、http://lamp.linux.gov.cn/Apache/ApacheMenu/programs/apxs.html 3、http://blog.csdn.net/laiahu/article/details/6691419 4、http://luyadong.blog.51cto.com/2876653/8010735、http://blog.bypat.com/html/2011/09/15/svn%E7%9B%B8%E5%85%B3%E6%96%87%E6%
阅读全文
摘要:最近没事,看了一下Spring的书籍,从它最开始的AOP1到AOP2,于是对基本的实现原理有了一种探究的想法,AOP1用的Dynamic Proxy的模式是从1.3引入,其本质就是生成代理类,包装原有的对象,将原有对象的方法指派给包装后生成的代理类,在方法调用前后,甚至于方法调用上做手脚,这个手脚就要具体看是什么业务逻辑。Proxy的代码很简单,核心就是newProxyInstance,接收参数为类加载器,接口,包装的InvokecationHandler,代码如下:1/*2*Lookuporgeneratethedesignatedproxyclass.3*/4Class<?>c
阅读全文
摘要:http://mcj8089.iteye.com/category/166537http://www.cnblogs.com/yanyanhappy/archive/2012/09/07/2675058.htmlhttp://www.cnblogs.com/Norman-ZL/archive/2012/09/07/2674826.htmlhttp://cjjwzs.iteye.com/blog/1045302#regexppr-CHP-1-TABLE-10http://www.regexbuddy.com/java.htmlhttp://blog.csdn.net/hiyu2218/artic
阅读全文