JakartaJEEWebDevelopment

Jakarta JEE8 Enterprise Web Development

View on GitHub

Using the Core Tag Library

The Core Tag Library in Jakarta Standard Tag Library (JSTL) provides elements that can replace embedded Java code in JSPs with logic such as iteration loops and conditional statements.

To start using the Core library, include the following taglib directive at the top of your JSP:

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

You can refer to the General Purpose Actions Core Tag Library for detailed information about the available tags. Here are some key tags and their corresponding links:

For further details on these tags and their usage, you can explore the provided links. Additionally, you can check out the Jakarta Standard Tag Library Core Finish Branch for practical examples of utilizing the Core Library tags.