1. 程式人生 > >JSP開發中對jstl的引用方式(標籤庫引用)

JSP開發中對jstl的引用方式(標籤庫引用)

http://blog.csdn.net/changmengmeng/article/details/5834146

建立標籤庫引用檔案taglibs.inc

一 採用本地標籤庫的taglibs.inc檔案 <%--struts庫標籤 --%> <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix=
"bean"%> <%@ taglib uri="/WEB-INF/struts-menu.tld" prefix="menu" %> <%--struts menu庫標籤 --%> <%@ taglib uri="/WEB-INF/struts-menu-el.tld" prefix="menu-el" %> <%@ taglib uri="/WEB-INF/pager-taglib.tld" prefix="pg"%> <%--JSTL庫標籤 --%> <%@ taglib uri="/WEB-INF/c.tld" prefix="c"
%> <%@ taglib uri="/WEB-INF/fmt.tld" prefix="fmt" %> <%@ taglib uri="/WEB-INF/sql.tld" prefix="sql" %> <%@ taglib uri "/WEB-INF/fn.tld" prefix "fn"%> 二 採用遠端標籤庫的taglibs.inc檔案 <%--struts庫標籤 --%> <%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%> <%@ taglib 
uri="http://struts.apache.org/tags-logic" prefix="logic"%> <%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%> <%--struts menu庫標籤 --%> <%@ taglib uri="http://struts-menu.sf.net/tag" prefix="menu"%> <%@ taglib uri="http://struts-menu.sf.net/tag-el" prefix="menu-el"%> <%@ taglib uri="http://jsptags.com/tags/navigation/pager" prefix="pg"%> <%--JSTL庫標籤 --%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <%@ taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt"%> <%@ taglib uri="http://java.sun.com/jstl/sql" prefix="sql"%> <%@ taglib uri="http://java.sun.com/jstl/function" prefix="fn"%> 最後 在jsp檔案中引用taglibs.inc檔案 <%@ >page language="java" pageEncoding="gb2312"% <%@ >include file="/common/taglibs.inc"%

在web.xml配置檔案中的<web-app>節點下增加下面的配置資訊

<jsp-config> <!--       strutsHTML標籤 --> <taglib> <taglib-uri>http://struts.apache.org/tags-html</taglib-uri> <taglib-location>/WEB-INF/struts-html.tld</taglib-location> </taglib> <!--       struts 的邏輯標籤(logic)--> <taglib> <taglib-uri>http://struts.apache.org/tags-logic</taglib-uri> <taglib-location>/WEB-INF/struts-logic.tld</taglib-location> </taglib> <!--       Struts Bean標籤--> <taglib> <taglib-uri>http://struts.apache.org/tags-bean</taglib-uri> <taglib-location>/WEB-INF/struts-bean.tld</taglib-location> </taglib> <!--       JSTL標籤--> <taglib> <taglib-uri>http://java.sun.com/jsp/jstl/core</taglib-uri> <taglib-location>/WEB-INF/c.tld</taglib-location> </taglib> <!--       page標籤--> <taglib> <taglib-uri>http://jsptags.com/tags/navigation/pager</taglib-uri> <taglib-location>/WEB-INF/pager-taglib.tld</taglib-location> </taglib> <!--       struts menu標籤--> <taglib> <taglib-uri>http://struts-menu.sf.net/tag</taglib-uri> <taglib-location>/WEB-INF/struts-menu.tld</taglib-location> </taglib> <!--       struts menuEL標籤--> <taglib> <taglib-uri>http://struts-menu.sf.net/tag-el</taglib-uri> <taglib-location>/WEB-INF/struts-menu-el.tld</taglib-location> </taglib> <!--       JSTLfmt標籤--> <taglib> <taglib-uri>http://java.sun.com/jstl/fmt</taglib-uri> <taglib-location>/WEB-INF/fmt.tld</taglib-location> </taglib> <!--       JSTLSQL標籤--> <taglib> <taglib-uri>http://java.sun.com/jstl/sql</taglib-uri> <taglib-location>/WEB-INF/sql.tld</taglib-location> </taglib> <taglib> <taglib-uri>http://java.su.com/jstl/function</taglib-uri> <taglib-location>/WEB-INF/fn.tld</taglib-location> </taglib> </jsp-config>