Explain What is JSP?

devquora
devquora

Posted On: Mar 22, 2020

 

JSP, expanded as Java Server Pages is a Java-based technology to create dynamic web pages. Released in 1999 by Sun Microsystems, JSP is based on technologies such as HTML, SOAP, XML, etc. JSP can be viewed as a servlet architecturally as it is translated into a servlet at runtime. JSP can also be used as a view component in MVC architecture with JavaBeans as a model and Servlets as the controller. JSP allows static content like HTML along with java code to be executed on the server-side. The resulting bytecode from the JSP must the executed on the JVM. In an overview, JSP can be thought of as an ASP or PHP technology to create web application but instead, JSP uses Java.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    JSP Interview Questions

    Which attribute specifies a JSP page that should process any exceptions thrown but not caught in the current page?

    ErrorPage Attribute process specifies a JSP page that should process any exceptions thrown but not caught in the current page....

    JSP Interview Questions

    What is the el in JSP?

    The EL (Expression Language) in the JSP is used to access the data stored in the JavaBeans along with implicit objects like requests, sessions, etc...

    JSP Interview Questions

    How to print variables in JSP?

    JSP uses the Java programming language. So, most of the statements in JSP follows the Java code. To print a variable in JSP,..