blogger如何製作高品質html原始碼
Published by Will under on 上午9:15
blogger如何製作高品質html原始碼
http://save-coco.blogspot.com/2008/12/test_11.html
http://save-coco.blogspot.com/2008/12/test_11.html
JSP 隱含變數 | 說明 | 存取範圍 ( scope ) |
對應型別 |
---|---|---|---|
request | 包含客戶端送出的 HTTP 請求 | request | javax.servlet.http.HttpServletRequest |
response | 欲傳送給客戶端的 HTTP 回應 | page | javax.servlet.http.HttpServletResponse |
out | 代表輸出資料流 ( output steam ) 的 JspWriter 物件 | page | javax.servlet.jsp.JspWriter |
config | 包含 Servlet (JSP編譯後產生) 相關資訊的 ServletConfig 物件 | page | javax.servlet.ServletConfig |
pageContext | 包含 JSP 網頁資訊的 PageContext 物件 | page | javax.servlet.jsp.PageContext |
page | 相當於 Java語言的 this 變數 ( JSP頁面本身的物件 ) | page | java.lang.Object |
exception | 由其他 JSP 拋出的例外事件 只有設定 <%@ page isErrorPage=true> 的 JSP 錯誤頁面才能使用 exception 隱含變數 |
page | java.lang.Throwable |
session | 存取 HTTP 連線階段內容 ( page 指令的 session 屬性必須設定為 true才有意義,預設為 "true" ) | session | javax.servlet.http.HttpSession |
application | 包含 Web 應用程式組態資訊的 ServletContext物件 | application | javax.servlet.ServletContext |
<%@ page isErrorPage="true"%> |
String exceptionName = exception.getClass().getNmae(); String exceptionMessage = exception.getClass().getMessage(); |
<%@ page errorPage="ExceptionHandling.jsp" %> |
<jsp : root xmlns : jsp = "http://java.sun.com/JSP/Page" xmln : myCTL = " www.abc.com/tablib" version = "2.0" > JSP文件內容 </jsp : root> |
JSP Standard Directive 與使用範例 | JSP Document 內相對應的元素 | |
---|---|---|
page | <%@ page imort = "java.util.*" %> | <jsp : directive.page import = "java.util.*" /> |
include | <%@ include = "result.jsp" %> | <jsp : directive.include file = "result.jsp" /> |
JSP Scripting Elements 與使用範例 | JSP Document 內相對應的元素 | |
---|---|---|
Declaratioin Tag | <%! int i = 1; %> | < jsp : declaration > |
Scriptlet Tag | <% if(x>0) { result = true; } %> |
< jsp : scriptlet > if (x>0){ result = true; } < / jsp : scriptlet > |
Expression Tag | <% = new Date () %> | < jsp : expression > new Date ( ) </ jsp : espression > |
<!-- 註解文字 --> |
<jsp - config > < jsp-property-group> <url-pattern>/scripting_disabled/*</url-pattern> <scripting -invalid>true</scripting-invalid> </jsp - property- group> <jsp-property - group> <url -pattern>/ EL_disabled/* </url -pattern> <el -ignored> true </el - ignored> </jsp-property-group> </jsp-config |