> -----Original Message----- > From: pierre jauffret [mailto:[EMAIL PROTECTED]] > We heard about Struts, and we would like to know if the > struts architecture based on 1 Servlet Controler(MVC) is > better than a classical architecture based on several > Servlets(MVC also): and for what reasons.
Each servlet that loads has init parameters. Struts actions have no init parameters. Given an equal number of servlets and actions, actions will take less memory and startup time. (Additionally, some web containers manufactured by a certain New York-based software company consume massive amounts of resources in loading servlets, so minimizing the number of servlets is a good thing if you're using such web containers.) Just one of many niceties that Struts offers. Cheers, Laird -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>