逛奔的蜗牛

我不聪明,但我会很努力

   ::  :: 新随笔 ::  ::  :: 管理 ::

JSTL 1.2.x is the latest version of JSTL. There are a few differences between this version and the previous JSTL 1.1.x version. The most important difference is that JSTL 1.2.x supports Unified EL (Expression Language) , where as JSTL 1.1.x supports only traditional EL. With Unified EL it becomes very easy to combine the EL in JSF (Java Server Faces) and the EL in JSTL. This guide shows you how to install JSTL 1.2.x properly or troubleshoot your existing JSTL installation. (from: http://hi.baidu.com/kelly_zsl/blog/item/e004562e4f3363331f3089a0.html)


1. 需要的jar包: jstl-1.2.jar

2. 复制此jstl-1.2.jar到Web工程的WEB-INFO/lib目录,不需要任何其他的配置,就可以在JSP页面中使用jstl了.

3. 示例: 在页面中输出 1 到 10

<%@ page language="java" contentType="text/html; charset=UTF-8"

pageEncoding="ISO-8859-1"%>

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


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<title>Insert title here</title>

</head>

<body>

<c:forEach var="i" begin="1" end="10" step="1">

<c:out value="${i}" />

</c:forEach>

</body>


EL只操作属性,所操作的类应该是JavaBean规范的,所操作的属性要有getter, setter.

${user.username}: 默认是从request(page)中取,如果request中没有名为username的对象则从session中取,session中没有则从application(servletContext)中取,如果没有取到任何值则不显示。

</html>


访问ArrayList的方式:

1. 放入request.setAttribute()或者session.setAttriute(),然后items="${users}"

<table border=1>

<tr>

<td>用户名</td><td>密码</td>

</tr>

<c:forEach var="users" items="${users}">

<tr>

<td><c:out value="${users.username}" /></td>

<td><c:out value="${users.password}" /></td>

</tr>

</c:forEach>

</table>


2. 使用JSP的赋值表达式 items="<%= users %>",这种方式也可以访问数组

<table border=1>

    <tr>

        <td>用户名</td><td>密码</td>

    </tr>

    <c:forEach var="users" items="<%= users %>">

        <tr>

            <td><c:out value="${users.username}" /></td>

            <td><c:out value="${users.password}" /></td>

        </tr>

    </c:forEach>

</table>

学习示例: http://www.java2s.com/Tutorial/Java/0380__JSTL/Catalog0380__JSTL.htm


posted on 2010-12-22 18:13 逛奔的蜗牛 阅读(532) 评论(0)  编辑 收藏 引用 所属分类: Java

只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理