摘要:Log4j Best PracticesJulius Davies, June 9th, 2008Before You Do Anything ElseTake a look at thislogging checklistby Anton Chuvakin.IntroductionLogs must be thought out. An application's log design should probably be signed-off by a software architect. Enhancements to the log design, as the system
阅读全文
12 2011 档案
摘要:Apache Commons包含了很多开源的工具,用于解决平时编程经常会遇到的问题,减少重复劳动。我选了一些比较常用的项目做简单介绍。文中用了很多网上现成的东西,我只是做了一个汇总整理。一、Commons BeanUtilshttp://jakarta.apache.org/commons/beanutils/index.html说明:针对Bean的一个工具集。由于Bean往往是有一堆get和set组成,所以BeanUtils也是在此基础上进行一些包装。使用示例:功能有很多,网站上有详细介绍。一个比较常用的功能是Bean Copy,也就是copy bean的属性。如果做分层架构开发的话就会用到
阅读全文