Servlet Advantages and Disadvantages
Servlet Advantage 1. Servlets provide a way to generate dynamic documents that is both easier to write and faster to run. 2. provide all the powerfull features of JAVA, such as Exception handling and garbage collection. 3. Servlet enables easy portability across Web Servers. 4. Servlet can communicate with different servlet and servers. 5. Since all web applications are stateless protocol, servlet uses its own API to maintain session Servlet Disadvantage 1. Designing in servlet is difficult and slows down the application. 2. Writing complex business logic makes the application difficult to understand. 3. You need a Java Runtime Environment on the server to run servlets. CGI is a completely language independent protocol, so you can write CGIs in whatever languages ...
Comments
Post a Comment