The ProblemAfter including <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> into your JSP, there is still no code complete for JSTL code, such as <c:set> or <c:out>
The solution you need to have the JSTL standard.jar library included in your project libraries.
If you are not using maven, you can download the 1.2 JSTL package from http://archive.apache.org/dist/jakarta/taglibs/standard/binaries/
If you are using maven, include the following in your relevant pom files:
<dependencies>
<dependency>
<groupId>taglibs</groupId>
<artifactId>standard</artifactId>
<version>1.1.2</version>
</dependency>
</dependencies>
AEM4BEGINNER blog is for Beginners who are interested in learning Adobe Experience Manager (AEM) aka Adobe CQ5 from basics. The Information provided in this blog is for learning and testing purposes only. Here, I have posted the information which I know or gathered from different sources.
April 3, 2020
Estimated Post Reading Time ~
CQ5/AEM how to get JSTL Code-complete
By
aem4beginner
No comments:
Post a Comment
If you have any doubts or questions, please let us know.