What are the problems with servlets?

Here are cons/drawbacks for using servlet:

  • One servlet is loaded into JVM. ...
  • When there is a request, there is a thread, not a process.
  • Servlet is persistent until it destroys.
  • Designing in a servlet is difficult and slows down the application.
  • You need a JRE(Java Runtime Environment) on the server to run servlets.

Related Posts: