Skip to content

Instantly share code, notes, and snippets.

@iamvickyav
Created July 26, 2017 19:12
Show Gist options
  • Save iamvickyav/a39617b0484fc020888ca35f33eeeb23 to your computer and use it in GitHub Desktop.
Save iamvickyav/a39617b0484fc020888ca35f33eeeb23 to your computer and use it in GitHub Desktop.
How to enable JSTL in our project
/** JSTL required **/
/** pom.xml **/
<dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
/** In JSP file **/
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment