Monday, December 13, 2010

How does JSP work ?

A JSP created by a web developer contains JSP technology specific tags along with conventional HTML tags and XML tags.
A JSP engine intrepretst the JSP tags and generates the content required. For example the content may be obtained by accessing a java bean or the data fetched from database using JDBC API or read from a file. This is further send back to the browser as HTML or XML page. The logic that generated dynamic content is encapsulates within tags or from the java bean in the server.

No comments: