One servlet or many...

2003-07-08 Thread Nick Stuart
Is it better to have one big servlet or a couple of smaller ones? Right now all my request are basically passed through one servlet. There isn't really any process heavy stuff going on, but I'm not quite sure which way would be better as there are several distinct sections I could break it up

Re: One servlet or many...

2003-07-08 Thread Rick Roberts
Smaller is (usually) better. If your not already familiar with Model-1 / Model-2 style applications, then I suggest that you do a little reasearch on MVC (Model-View-Controller). Nick Stuart wrote: Is it better to have one big servlet or a couple of smaller ones? Right now all my request are