mirror of
https://github.com/jetty/jetty.project.git
synced 2025-03-01 11:29:29 +00:00
JETTY-1434
Add a jsp that exercises jstl.
This commit is contained in:
parent
0555cc762f
commit
11ae5c7dd3
@ -10,6 +10,7 @@
|
||||
<li><a href="tag2.jsp">JSP 2.0 SimpleTag demo</a><br/>
|
||||
<li><a href="tagfile.jsp">JSP 2.0 Tag File demo</a><br/>
|
||||
<li><a href="expr.jsp?A=1">JSP 2.0 Tag Expression</a><br/>
|
||||
<li><a href="jstl.jsp">JSTL Expression</a><br/>
|
||||
</ul>
|
||||
<a href="/">Main Menu</a>
|
||||
|
||||
|
15
test-jetty-webapp/src/main/webapp/jsp/jstl.jsp
Normal file
15
test-jetty-webapp/src/main/webapp/jsp/jstl.jsp
Normal file
@ -0,0 +1,15 @@
|
||||
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
||||
<html>
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
<h1>JSTL Example</h1>
|
||||
<hr>
|
||||
<p>A trivial jstl example
|
||||
<hr>
|
||||
<c:forEach var="i" begin="1" end="10" step="1">
|
||||
<c:out value="${i}" />
|
||||
<br />
|
||||
</c:forEach>
|
||||
</body>
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user