Category: JSP

Can I create XML pages using JSP technology? 0

Can I create XML pages using JSP technology?

Yes, the JSP specification does support creation of XML documents. For simple XML generation, the XML tags may be included as static template portions of the JSP page. Dynamic generation of XML tags occurs...

How is a JSP page invoked and compiled? 0

How is a JSP page invoked and compiled?

Pages built using JSP technology are typically implemented using a translation phase that is performed once, the first time the page is called. The page is compiled into a Java Servlet class and remains...

How do JSP pages work? 0

How do JSP pages work?

JSP engine interprets tags, and generates the content required – for example, by calling a bean, accessing a database with the JDBC API or including a file. It then sends the results back in...

Explain the life-cycle methods in JSP? 0

Explain the life-cycle methods in JSP?

The generated servlet class for a JSP page implements the HttpJspPage interface of the javax.servlet.jsp package. The HttpJspPage interface extends the JspPage interface which inturn extends the Servlet interface of the javax.servlet package. the...