What's better, having one large servlet or many small ones?

2005-09-06 Thread Raueber Hotzenplotz
Hello Should I have one handler with many methods or more handlers with less methods (1-2)? Thanks! ___ To help you stay safe and secure online, we've developed the all new Yahoo! Security Centre.

RE: What's better, having one large servlet or many small ones?

2005-09-06 Thread Mark Benussi
Many small ones. -Original Message- From: Raueber Hotzenplotz [mailto:[EMAIL PROTECTED] Sent: 06 September 2005 10:50 To: tomcat-user@jakarta.apache.org Subject: What's better, having one large servlet or many small ones? Hello Should I have one handler with many methods or more

RE: What's better, having one large servlet or many small ones?

2005-09-06 Thread Jason Bell
Raueber Keep in mind that one day it could be many people reading your code, so I would suggest you have many servlets doing specific things. Regardless of whether it's a servlet, jsp or Java application think of future prospects of your code. Ideally you could hand it to anyone and they

RE: What's better, having one large servlet or many small ones?

2005-09-06 Thread Guernsey, Byron \(GE Consumer Industrial\)
-Original Message- From: Raueber Hotzenplotz [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 06, 2005 5:50 AM To: tomcat-user@jakarta.apache.org Subject: What's better, having one large servlet or many small ones? Hello Should I have one handler with many methods or more handlers