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

JSTL简介

时间:2014-11-07 23:25:35      阅读:308      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   os   使用   java   

JavaServer Pages Standard Tag Library由JCP(Java Community Process)指定标准提供给 Java Web 开发人员一个标准通用的标签函数库和 EL 来取代传统直接在页面上嵌入 Java 程序(Scripting)的做法,以提高程序可读性、维护性和方便性.
1、使用标签的流程
  1、导包(MyEclipse中一般自带有,如果没有可以自行下载  下载地址  解压缩后将lib 中的jstl.jar、standard.jar 复制到WEB应用程序的WEB-INF\lib 下),MyEclipse下自带如下
bubuko.com,布布扣
  2、在Jsp页面声明:uri:确定使用的标签库,具体的名称;prefix:为当前标签库起一个别名
    
<%@ taglib uri="xxxxxx" prefix="z"%>

  说明:JSTL标签库

      核心标签库 (Core tag library)
      国际化标签 (I18N—capable formatting tag library)
      数据库标签(SQL tag library)
      XML标签(XML tag library)
      JSTL函数标签(Functions tag library)--EL函数
JSTL 前缀名称 URI 使用

核心标签库

c

http://java.sun.com/jsp/jstl/core

<c:out>
国际化标签 fmt

http://java.sun.com/jsp/jstl/fmt

 

<fmt:formatDate>

数据库标签 Sql

http://java.sun.com/jsp/jstl/sql

 

<sql:query>

XML标签 x

http://java.sun.com/jsp/jstl/xml

 

<x:forEach>

函数标签 fn

http://java.sun.com/jsp/jstl/functions

${fn:indexOf(name, "-")}

3、使用
  <prefix简称:xxxx></prefix简称:xxxx>
  例如:<c:set var="lang" value="Java" scope="page"></c:set>

JSTL简介

标签:style   blog   http   io   color   ar   os   使用   java   

原文地址:http://www.cnblogs.com/liuwt365/p/4082409.html

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