程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> 關於ASP.NET >> web.xml學習(8)_jsp-config

web.xml學習(8)_jsp-config

編輯:關於ASP.NET

13.jsp-config

jsp-config元素主要用來設定JSP的相關配置,<jsp:config>包括<taglib>和<jsp-property-group>兩個子元素.其中<taglib>元素

在JSP 1.2時就已經存在了;而<jsp-property-group>是JSP 2.0新增的元素.

taglib :對標記庫描述符文件(Tag Libraryu Descriptor file)指定別名。此功能使你能夠更改TLD文件的位置,而不用編輯使用這些文件的JSP頁面。

<taglib>

taglib元素包含兩個子元素taglib-uri和taglib-location.用來設定JSP網頁用到的Tag Library路徑.

<taglib-uri>URI</taglib-uri>

  taglib-uri定義TLD文件的URI,JSP網頁的taglib指令可以經由這個URI存取到TLD文件.

<taglib-location>/WEB-INF/lib/xxx.tld</taglib-laction>

  TLD文件對應Web站台的存放位置.

</taglib>

<jsp-property-group>

jsp-property-group元素包含8個元素,分別為:

<description>Description</descrition>

此設定的說明

<display-name>Name</display-name>

此設定的名稱

<url-pattern>URL</url-pattern>

設定值所影響的范圍,如:/CH2 或者/*.jsp

<el-ignored>true|false</el-ignored>

若為true,表示不支持EL語法.

<scripting-invalid>true|false</scripting-invalid>

若為true表示不支持<%scription%>語法.

<page-encoding>encoding</page-encoding>

設定JSP網頁的編碼

<include-prelude>.jspf</include-prelude>

設置JSP網頁的抬頭,擴展名為.jspf

<include-coda>.jspf</include-coda>

設置JSP網頁的結尾,擴展名為.jspf

</jsp-property-group>

</jsp-config>

范例:

<jsp-config>  
<taglib>  
   <taglib-uri>Taglib</taglib-uri>  
   <taglib-location>/WEB-INF/tlds/MyTaglib.tld</taglib-location>  
</taglib>  
<jsp-property-group>  
   <description>  
      Special property group for JSP Configuration JSP example.  
   </description>  
   <display-name>JSPConfiguration</display-name>  
   <uri-pattern>/*</uri-pattern>  
   <el-ignored>true</el-ignored>  
   <page-encoding>GB2312</page-encoding>  
   <scripting-inivalid>true</scripting-inivalid>  
   ............  
</jsp-property-group>  
</jsp-config>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved