taglib for JSP is not working

I added the specific JSTL dependency to the pom it didn't show any errors however, when I added the taglib to the JSP it shows an error
No description
4 Replies
dan1st
dan1st3y ago
add jstl as a dependency
<dependency>
<groupId>javax.servlet.jsp.jstl</groupId>
<artifactId>jstl-api</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>javax.servlet.jsp.jstl</groupId>
<artifactId>jstl-api</artifactId>
<version>1.2</version>
</dependency>
Rag...JN 🌌 🦡 👽 💰 🐊
yeah I tried that

Did you find this page helpful?