RE: Front Controller?

2004-06-07 Thread Chaikin, Yaakov Y (US SSA)
Model 2 / MVC / Front Controller are all the same thing. Hmm... No, they are not. Front Controller and MVC are similar, but are NOT the same design patterns! Front Controller is used for a sequence of predefined steps (like a check out on amazon). MVC is used for separation of Model (data

RE: Front Controller?

2004-06-07 Thread Chaikin, Yaakov Y (US SSA)
Struts contains a Front Controller implementation! Could you point me to a particular class? Or are you saying that the default class is already following Front Controller? Thanks, Yaakov. - To unsubscribe, e-mail: [EMAIL

RE: Front Controller?

2004-06-07 Thread Matthias Wessendorf
class and the ApplicationController is RequestProcessor class. BR Amleto -Messaggio originale- Da: Chaikin, Yaakov Y (US SSA) [mailto:[EMAIL PROTECTED] Inviato: lunedì 7 giugno 2004 18.44 A: Struts Users Mailing List Oggetto: RE: Front Controller? Struts contains a Front

Re: Front Controller?

2004-06-06 Thread Riyad Kalla
Model 2 / MVC / Front Controller are all the same thing. In Struts the Front Controller is the ActionServlet, it receives/handles/dispatches every single request that comes into your web app. You write actions that are like units of functionality, then specify in a mapping file the