基于flex4技术从零开发flex博客系统: 8 using jsp and jstl
2009-05-05 12:06:05 来源:WEB开发网这里仅添加了对core tablib的引用,因为稍后我在jstl中仅用到了它。可以添加的tablig-uri共有五种,分别为:
Core: http://java.sun.com/jsp/jstl/core
XML: http://java.sun.com/jsp/jstl/xml
Internationalization: http://java.sun.com/jsp/jstl/fmt
SQL: http://java.sun.com/jsp/jstl/sql
Functions: http://java.sun.com/jsp/jstl/functions
每一个uri对应/WEB-INF/tld目录下的一个tld文件。每一类tab的功能大致为:
新建一个greeting_via_jstl.jsp文件,内容如下:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@page import="java.util.ArrayList"%><html>
<body>
<c:forEach var="x" begin="1" end="10" step="1">
<c:out value="${x*x}"></c:out>
</c:forEach>
</body>
</html>
该jsp文件内容十分简单,仅使用了forEach标签。jstl功能很多,但要用它,等于还要学一门tag语言。关于jstl的介绍,止于配置、可以使用,有兴趣的可以查阅相关文档。
本课最终源码:
gapp_flexlbog: http://flashview.ddvip.com/2009_05/gapp_flexblog-8.zip
gapp_flexblog_client:无修改
dotnet_web:无修改
出处:http://sban.cnblogs.com
系列文章:
基于flex4技术从零开发flex博客系统 : 1 开发环境配置与hello world
基于flex4技术从零开发flex博客系统 : 2 与servlet服务端交互
基于flex4技术从零开发flex博客系统 : 3 使用Remoting服务
基于flex4技术从零开发flex博客系统 : 4 数据存储
基于flex4技术从零开发flex博客系统 : 5 数据存储之管理Greeting
基于flex4技术从零开发flex博客系统: 6 Using FluorineFx
基于flex4技术从零开发flex博客系统: 7 Using JPA
更多精彩
赞助商链接