When I develop jsp pages I use jstl.
For example I use same constructions
...
<c:forEach items="${objects}" var="object">
<td>${object.name} </td>
</c:forEach>
...
I know that prefix c
defines when I make include page. For c
prefix:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
I suppose that somewhere behind the scenes executes code(maybe java code)
Is it truthful statement ?
How do this code connects with uri
?
How it works in general?