Explain what is JSTL?

devquora
devquora

Posted On: Feb 22, 2018

 

    1 Answer Written

  •  devquora
    Answered by Satyam Jaiswal

    JSTL stands for the JSP Standard Tag Library is a standard tag that allows you to control the behaviors of the JSP page. JSTL helps in fast development and code reusability. If you are using a JSTL tag then there is no need for using a scriptlet tag. List of different JSTL tags is as follows,

    • Core tags: They are used for providing variable support, flow control, and URL management.
    • Function tags: These tags are used for providing support to the string length and string manipulation.
    • Formatting tags: It is used for the support of date formatting, message formatting, and number.
    • XML tags: The feature of this tag is to provide transformation, flow control and much more.
    • SQL tags: The JSTL SQL tag gives the SQL support.

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

Explain What is JSP?

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 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...