AF
HomeTagSubmit NotesAsk AnythingLoginSubscribe Us
AF
1. Feel Free to ask and submit anything on Anyforum.in and get satisfactory answer
2. Registration is not compulsory, you can directly login via google or facebook
3. Our Experts are looking for yours ?.



java-jsp: What is JSP engine?

Please explain what is JSP engineor what is JSP container.

java x 211
jsp x 32
Posted On : 2015-09-20 14:37:16.0
profile Rishi Kumar - anyforum.in Rishi Kumar
523188249150
up-rate
3
down-rate

Answers


In order to execute a JSP file(Page), the web server must be loaded with a software capable to execute JSPs. The software loaded provides an environment for execution of a JSP. This environment is known as JSP engine or JSP container. Similarly, a Servlet container provides environment for a Servlet to execute.

A Web container is a general term which executes Web programs like ASP, Servlets, JSP, PHP etc. So, a JSP container and a Servlet container are Web containers.

In general a container has the following responsibilities:
==============================================================
* Should provide standard libraries required for coding.
* Should provide suitable environment for execution.
* Should call callback methods at appropriate times for the smooth execution.
* Should maintain the life cycle of the program

In particular, a JSP container responsibilities:
------------------------------------------------------------------------------------------
The JSP container should be capable to translate JSP file to a Servlet file, compile the servlet file, execute the Servlet and send the output of execution to client as response. As internally, a JSP file is converted to Servlet, the JSP container should also come with a Servlet container.

In particular, a Servlet container responsibilities:
--------------------------------------------------------------------------------------------
* Should capable to load the Servlet .class file at the request of the client, execute the Servlet.
* Access the database server, if required.
* Send the output of execution to client as response.
* When the response is delivered close the connection with the client.

Posted On : 2015-09-20 14:54:56
Satisfied : 1 Yes  0 No
profile Saksham Kumar - anyforum.in Saksham Kumar
73433939092
Reply This Thread
up-rate
5
down-rate



Post Answer
Please Login First to Post Answer: Login login with facebook - anyforum.in