Showing posts with label JSTL. Show all posts
Showing posts with label JSTL. Show all posts

Saturday 9 February 2013

Enabling JSTL (JSP Standard Tag Library) in your web application

JSTL is a good to enable tag library while developing Java Server Pages. It speeds up the development and lets you write logical blocks in fewer lines.

The JSTL library to be included to your web application depends on the version of Servlet you are using. The steps mentioned here lets you choose the right JSTL library version and include it to your web application. We continue from the previous post where we built the web application.

Locating Servlet version

  1. Open web.xml file located in WEB-INF folder.
  2. Check the version attribute of web-app tag.
    Here, the version is 2.5.

Downloading JSTL package depending upon the version

Refer this link to know which version you would need to download depending upon your Servlet version. You will find the download link for each version. I downloaded javax.servlet.jsp.jstl-1.2.1.jar as I have 2.5 version.

Using JSTL in your application

  1. Create a lib folder under WEB-INF.

  2. Copy the downloaded jar file into the lib folder.
  3. Include library to your JSPs and start using it. Here I have modified the existing function to use JSTL tag.
    Source
    <%@ page language="java" contentType="text/html; charset=UTF-8"
     pageEncoding="UTF-8"%>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Hello World</title>
    </head>
    <body>
     <%--
      Object message = request.getAttribute("message");
      if (message == null) {
     %>
     <form action="sayHello" method="post">
      <input type="submit" value="Submit" />
     </form>
     <%[
      } else {
     %>
     <%=message%>
     <%
      }
     --%>
     <c:if test="${empty message}">
      <form action="sayHello" method="post">
       <input type="submit" value="Submit" />
      </form>
     </c:if>
     <c:if test="${not empty message}">
      <c:out value="${message}" />
     </c:if>
    </body>
    </html>