1.2第一個jsp(SUN企業級應用的首選)程序介紹:
1、 打開一個文本編輯器,或者一個jsp(SUN企業級應用的首選)專用的文本編輯器能標出一些語法的高亮。
2、 如果你編寫一個jsp(SUN企業級應用的首選)來處理http請求那麼。將會和編寫html文件一樣。
3、 一個jsp(SUN企業級應用的首選)文件如果要包含一些jsp(SUN企業級應用的首選)命令(列如一個taglib)的話要在文件開頭寫上<%@%>
4、 你可以在你需要的地方輸入一個普通的表單提交或者用戶標簽。
5、 保存文件時以.jsp(SUN企業級應用的首選)為擴展名進行保存。在一個web應用中放在整個目錄的頂層。既放在
Web-info同級目錄下。
Example :
// 表示注釋內容 <%-- --%>
<%-- use the taglib directive to make the JSTL 1.0 core tags available; use the uri "http://java.sun.com/jsp(SUN企業級應用的首選)/jstl/core" for JSTL 1.1 --%>//使用c:out標簽http://www.knowsky.com/
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<%-- use the jsp(SUN企業級應用的首選):useBean standard action to create the Date object; the object is set as an attribute in page scope --%>//在jsp(SUN企業級應用的首選)中使用javabean指明其(id)對象和(java.util.Date)類.
<jsp(SUN企業級應用的首選):useBean id="date" class="java.util.Date" /> <html><head><title>First jsp(SUN企業級應用的首選)</title></head><body><h2>Here is todays date</h2>//使用表達式輸出${data}
<c:out value="${date}" /> </body></html>