最近在网上看到一篇N. Alex Rupp写的“Beyond MVC: A New Look at the Servlet Infrastructure”文章,意思大致是说MVC被Struts等框架错误地应用到了Servlet架构中。我想只有对Struts有足够的了解再加上在MVC方面有足够深的功力,才敢发此言论,不是经常听人说:最熟悉自己的人是你的敌人。本人功力尚浅,没有引领风潮的能力,而且生活还得继续,只能先来熟悉熟悉Struts。
申明: 强烈建议在阅读本文之前先阅读一下N. Alex Rupp老兄的文章,如果你赞同他的看法,可能你会觉得研究Struts就没什么意义了。
Java 国际化和本地化 Toolkit 2.0
Resource Bundle Inspector For Java
Resource Bundle Inspector For JavaTM enables initial verification and inspection of translated messages in resource bundles before product testing is done. These translated messages have come from different geographical translation centers. This tool helps testers to speed up the verification of message
Making A Better CMS
by Jeffrey Veen
November 15, 2004
I did some research recently at OpenSourceCMS.com — a fantastic site that lets you play with dozens of CMS installations
Sawmill is a powerful, hierarchical log analysis tool that runs on every major platform. It is particularly well suited to web server logs, but can process almost any log. The reports that Sawmill generates are hierarchical, attractive, and heavily cross-linked for easy navigation. Complete documentation is built directly into the program.
Here are just a f
The Dilemma of Exception 来自 透明思考
现在的异常体系设计是:系统内部所有异常继承同一个基类BaseException,BaseException又继承RuntimeException。在一个层次(例如DAO层或者Business Service层)中有一个异常基类,对于每种具体的出错情形再派生一个新的异常类,例如UserCannot