JSP Interview Questions and Answers

Thumb

Author

BIQ

Questions

22

Last updated

Mar 8, 2022

JavaServer Pages or JSP is a software-based technology that helps developers in creating dynamically generated web pages based on XML or HTML. It uses servlet containers, small programs to control the content and appearance of the web page. JSP technology can also be used to share information across pages using a response and request objects. With the help of JavaServer Page, you can easily access JavaBeans objects and make a separation in the web applications as per the business logic. To know more about JavaServer Page, we are mentioning some of the JSP Interview Questions are useful for all types of readers.

Most Frequently Asked JSP Interview Questions

Here in this article, we will be listing frequently asked JSP Interview Questions and Answers with the belief that they will be helpful for you to gain higher marks. Also, to let you know that this article has been written under the guidance of industry professionals and covered all the current competencies.

Q1. What is JSP and why it is used?
Answer

JSP or JavaServer Pages is a software technology used to develop to dynamic interactive web pages based on HTML or XML while controlling the content or appearance of web pages with the use of servlet containers. It has s wide a range of applications and separates business logic from the presentation layer.

Q2. What are the advantages of JSP?
Answer

Using JSP has numbers of benefits, such as

  • It allows tag-based programming
  • Suitable for both Java and non-Java programmers
  • Allows developers to use separate presentation logic
  • Highly increases readability of code because of tags
  • Easy to learn and apply
Q3. What is the difference between servlet and JSP?
Answer

JSP is a dynamic content generating webpage scripting language, whereas servlets are programs that operate on a web or application server and act as a middle layer between a request coming from applications on the HTTP server, or a web browser or other HTTP client and database.

Q4. Explain JSP lifecycle methods?
Answer

The JSP lifecycle methods are as following:

  • jspInit() : It operates to initialize the servlet instance. Before calling any other method, its call is made.
  • _jspService() : It passes the request and the response subjects. You can’t override the method.
  • jspDestroy(): The container calls this when its instance is about to destroy.
Q5. What are different types of comments used in JSP?
Answer

Basically, there are two types of comments allowed in the JSP, hidden comments and output comments.

 

The hidden comments of JSP don’t appear in the generated output in the HTML (ex: <%-- This is hidden comment --%>), while output comments arrear in the generated output ex: <!-- This is output comment -->).

Q6. Define Scriptlet, Expression and Declaration in JSP?
Answer

A JSP expression is used to put the Java values directly into the output. It has the form of <%= Java expression %>. JSP scriptlets are more than the simple expression and used to insert complex code into the service() method of the generated servlet. Whereas, a JSP declaration defines fields or methods that get inserted into the main body of the servlet class.

Q7. Explain the JSP implicit objects?
Answer

Created by JSP Engine during translation phase, while translating JSP to Servlet, JSP implicit objects are crafted inside service method and can be used directly within scriptlet without initializing and declaring them. In JSP, a total number of 9 implicit objects are available as following, Out, Request, Response, Session, Application, Exception, Page, pageContext, and config.

Q8. What do you mean by JSP Directives?
Answer

These are the messages to JSP container, and they provide global information for an entire JSP page. JSP directives are used by developers to give special instruction to a container for translation of JSP to servlet code. These directives can contain many attributes by comma separated as key-value pairs. JSP directives are described in <%@ %> tags.

Q9. What is the difference between include directive and include action?
Answer

Here are a few crucial differences between these two:

  • Include directive is processed at the translation time, but include action is processed at the request time.
  • Include directive uses both absolute and relative path, whereas include action only uses a relative path.
  • Include directive only uses the contents of the resource, while include action process dynamic content resource.
Q10. How we can include the result of another page in JSP?
Answer

So many mechanisms are available through which the results of another page can be included in JSP.

There of primary mechanisms used by developers are

  • Include directive
  • jsp:include element
  • Codas and preludes
Q11. List the different scope values for the <jsp:useBean> tag in JSP?
Answer

This tag is required to use any Java object present in the JSP page.

The scope values for tag are as following: application, request, page, session, etc.

Q12. What is <jsp:useBean> in JSP?
Answer

This action tag is used to instantiate or locate a bean class. Depending on the scope, it doesn’t create the bean if the bean object of the Bean class is already created. This JSP action tag has five attributes, which includes Id, Scope, Class, Type and Bean Name.

Q13. What are the difference between ServletContext and PageContext?
Answer

In JSP, the ServletContext shares information about the container in which the servlet is running in. This can be set up in the web application descriptor. There can be only one v ServletContext per web application. Compared to this, the PageContext gives the servlet information about the request that it is currently managing and contains information about the request, the response object, the session, and also a reference to the ServletContext of the web application.

Q14. What is the differences between the JSP custom tags and java beans?
Answer
  • Custom tags are used to manipulate the JSP content, whereas Java beans can’t be manipulated.
  • Java beans are easy to implement compared to custom tags which are tedious to implement.
  • Custom tags contain self-contained behaviour, but Java beans are defined in one servlet and it is used in the JSP page or different servlet.
Q15. What do you mean by JSTL?
Answer
The JSP Standard Tag Library or JSTL is a set of tags created to simplify the JSP development. The JSTL tags help in fast development, code reusability and eliminate the required use of scriptlet tags.
Q16. List all tags that are provided in JSTL?
Answer

Based on function, JSTL tags are categorized into five types, which are Core Tags, Formatting and Localisation Tags, SQL Tags, XML Tags and Functions Tags.

Q17. How do you enable and disable sessions using JSP?
Answer

The session in a JSP page can be disabled by setting the session attributes to false. The following can be exampled to disable the session object using page directive: <%@ page session="false" %>

Q18. What are the steps for creating custom tags in JSP?
Answer

To create a custom tag in JSP, use the following steps.

  • Create the tag handler class first
  • Then, create the TLD file
  • Finally, create the JSP file
Q19. How we can configure init params in JSP?
Answer

Developers can configure init params in JSP similar to the servlet in the web.xml file. We have to configure JSP init-params with servlet and servlet-mapping element. Put the JSP page location in the JSP-file element.

Q20. What are the difference between JspWriter and Servlet PrintWriter?
Answer

JSP PrintWriter is object directly responsible for writing the content in response, whereas JspWriter uses the PrintWriter object behind the scene while offering buffer support. After the buffer support is flushed or full, JspWriter uses the object in PrintWriter to write the content into a response.

Q21. How we can use JavaScript with JSP Pages?
Answer

As JavaScript is client-side script and JSP is a server-side script, developers can attach a form validation to a JSP page to redirect JavaScript content and HTML page.

Q22. What do you mean by Custom Tag in JSP?
Answer

A JSP custom tag is a user-defined JSP language element. A JSP page which contains a custom tag is generally transcribed into a servlet. Then, the custom tag is converted to operations on an object called a tag handler. The custom tags can be created with JSP tag extensions that let developers insert these new tags directly into a JSP.