码迷,mamicode.com
首页 > Web开发 > 详细

JSP和JSTL视图解析器

时间:2017-07-29 15:20:38      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:pre   blog   div   char   logs   视图   use   code   glib   

技术分享

使用JSTL

技术分享

users.jsp

 1 <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
 2 <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
 3 <!DOCTYPE html>
 4 <html>
 5     <head>
 6         <title>JSTL Demo</title>
 7     </head>
 8     
 9     <body>
10         <table>
11             <thead>
12             <tr>
13                 <th>ID</th>
14                 <th>UserName</th>
15                 <th>Name</th>
16                 <th>Age</th>
17             </tr>
18             </thead>
19             <tbody>
20                 <c:forEach items="${users}" var="user">
21                     <tr>
22                         <td>${user.id}</<td>
23                         <td>${user.userName}</<td>
24                         <td>${user.name}</<td>
25                         <td>${user.age}</<td>
26                     </tr>
27                 </c:forEach>
28             </tbody>
29         </table>
30     </body>
31 </html>

封装集合对象

技术分享

效果:

技术分享

 

JSP和JSTL视图解析器

标签:pre   blog   div   char   logs   视图   use   code   glib   

原文地址:http://www.cnblogs.com/ZHOUVIP/p/7255812.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!