发布时间:2014-09-16 10:43:41
Pico container or google-guice. See a comparison here.Btw, few people will call spring "ligthweight", but it can be used as such with only the basic features. Hence it's included in the above comparison.http://stackoverflow.com/questions/5332041/lightweight-ioc-cont.........【阅读全文】
发布时间:2014-09-13 13:27:38
Eclipse 和Intellij IDEA 快捷键比较 掌握快捷键能够大大提高开发效率。 Intellij Idea提供了更丰富的快捷键,提供了多种方案:Eclipse、Netbeans、GNOME、XWin等,其中XWin为默认方案。 下面所列的快捷键,[]中为Eclipse快捷键,{}中为Intellij快捷键。 快捷键查阅【 Ctrl+Shif.........【阅读全文】
发布时间:2014-09-13 13:26:38
使用Maven 2.2.1 build 项目mvn clean install -Dmaven.test.skip=truemvn clean install -DskipTests......【阅读全文】
发布时间:2014-07-01 10:08:33
线程同步Synchronization线程就像图书借阅者,线程从资源池中借资源。线程通过共享内存、文件处理、sockets和其他资源让程序更加高效。只要两个线程不想同时使用相同的资源,多线程比多进程更高效,因为每个进程需要keep its own copy of every resource。多线程的缺点是:如果两个线程同时想要得到相同的资源时,其.........【阅读全文】