From: Stefano C. <cam...@ya...> - 2005-02-22 10:51:43
|
Hi Paolo, I'm reading about the Java Plug in Framework (JPF), it seem in early state , but could be useful. Also I like to understand how to re factor the controller. At the moment I see two ways: 1) Using Struts, with a javax.filter before the Struts Servlet that hide the bad mapping Url ("*.do"), this solution give us almost all advantages of the Struts Framework, but we have a big framework included in the project 2) Using Jakarta.commons.Chain developing our custom controller, this solution give us the advantage to have a clean project (only what we need) and give the possibility (it use the Inversion of Control paradigm) to test almost completely "Actions" without using a Web Client. But we have to develop and maintain our controller. I try the second way creating a small prototype. Bye Campa |