-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathq
More file actions
27 lines (21 loc) · 640 Bytes
/
q
File metadata and controls
27 lines (21 loc) · 640 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<%@ taglib prefix="c"
uri="http://java.sun.com/jsp/jstl/core" %>
<c:set var="salary" scope="session" value="${2000*2}"/>
<c:out value="${salary}"/>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.1</version>
<scope>provided</scope>
</dependency>
<table>
<c:forEach var="tmp" items="${list}">
<tr>
<c:forEach var="inner" items="${tmp}">
<td>
<p>${inner}</p>
</td>
</c:forEach>
</tr>
</c:forEach>
</table>