can not resolve taglibrary
I created a Java EE Web module in Intellij idea IDE and added jstl-1.2.jar into lib directory. Also, I added this line to my jsp page:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>but I got this error: con not resolve taglibrary with the uri.
How could I fix that?
Attachment(s):
index.jsp.zip
Please sign in to leave a comment.
You need to add the jar to the classpath of the module: Project Structure -> Modules -> Dependencies
Thanks for your help.
It is working.