|
|
|
JSPs/Servlets Performance
With the emergence of new server component standards such as EJB (Enterprise Java Beans) and JSP (Java Server Pages), it is interesting to evaluate the potential of each of these technologies in terms of performance and deployment.
|
|
Best Practices to improve performance in Servlets
Servlets represent an extension to the HTTP server. It takes http request as an input and sends the http response to the client as an output. Servlet API provides two packages they are javax.servlet and javax.http.servelt. These packages contain interfaces and classes to deal with generic and http functionality that means you can write a Servlet in java to get http request and send a http response to the client. Client is typically a browser. These interfaces are implemented by Servlet Engines. There are numerous vendors who provides Servlet Engines to work with Servlets, for example Tomcat, weblogic, webshpere etc.
|
|
|