中文字幕二区_国产精品免费在线观看_黄色网站观看_人人草人人澡_日本真实娇小xxxx

您的位置: 首頁 > 技術(shù)文檔 > 網(wǎng)絡(luò)編程 > [J2EE]實戰(zhàn)留言本(升級應(yīng)用篇)
用http組件實現(xiàn)多引擎搜索功能 回到列表 利用ASP連接各種數(shù)據(jù)庫
 [J2EE]實戰(zhàn)留言本(升級應(yīng)用篇)

作者:maxuan 時間: 2003-10-04 文檔類型:原創(chuàng) 來自:藍色理想

第 1 頁 [J2EE]實戰(zhàn)留言本 [1]
第 2 頁 [J2EE] 實戰(zhàn)留言本 [2]
第 3 頁 [J2EE] 實戰(zhàn)留言本 [3]
第 4 頁 [J2EE] 實戰(zhàn)留言本 [4]
第 5 頁 [J2EE] 實戰(zhàn)留言本 [5]
第 6 頁 [J2EE] 實戰(zhàn)留言本 [6]
第 7 頁 [J2EE] 實戰(zhàn)留言本[7]
第 8 頁 [J2EE] 實戰(zhàn)留言本 [8]
第 9 頁 [J2EE] 實戰(zhàn)留言本 [9]
第 10 頁 [J2EE] 實戰(zhàn)留言本[補遺]

由于在此篇教程中并沒有涉及到國際化應(yīng)用,應(yīng)此我們并沒有編寫相應(yīng)的資源文件!
struts-config.xml的源代碼
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC "-//
Apache Software Foundation//DTD Struts Configuration 1.1//EN" 

"http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
<struts-config>
<form-beans>
<form-bean name="lyForm" type="guestbook.maxuan.action.LyForm" />
</form-beans>
<action-mappings>
<action path="/lyList"
type="guestbook.maxuan.action.LyListAction">
<forward name="success" path="/indexCnt.jsp" redirect="false" />
</action>
<action path="/saveLy" type="guestbook.maxuan.action.LySaveAction"
name="lyForm" input="/ly.jsp" 

scope="request">
<forward name="success" path="/index.jsp" redirect="true" />
</action>
<action path="/editLy" type="guestbook.maxuan.action.LyEditAction"
 name="lyForm" scope="request">
<forward name="success" path="/ly.jsp" redirect="false" />
</action>
</action-mappings>
<message-resources parameter="ApplicationResources"
key="org.apache.struts.action.MESSAGE" />
</struts-config>


以上,我們完成了此次教程應(yīng)用的struts-config.xml的編寫,我們看到使用struts console工具編寫Struts-config.xml是多么的輕松容易,如果用純文本編輯工具來寫一個大型的struts配置文件,我想恐怕是一個噩夢!

在完成了配置后,我們開始寫JSP頁面,首先我們定義template,它是struts的模板,所有相同的部份都可以使用template!
template.jsp的源代碼
<%@ taglib uri='/WEB-INF/struts-template.tld' prefix='template' %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<title>留言本教程范例</title>
</head>
<body bgcolor="#ffffff" leftmargin="0" topmargin="0"
marginwidth="0" marginheight="0">
<template:get name='header'/>
<template:get name='content'/>
<template:get name='footer'/>
</body>
</html>


接著完成首頁index.jsp文件,它的模板使用template.jsp,定義了頁首(header.htm),頁尾(footer.htm),及內(nèi)容顯示(由/lyList.do映射到indexCnt.jsp)
index.jsp的源代碼
<%@ taglib uri='/WEB-INF/struts-template.tld' prefix='template' %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<template:insert template='/template.jsp'>
<template:put name='header' content='/header.htm'/>
<template:put name='content' content='/lyList.do'/>
<template:put name='footer' content='/footer.htm'/>
</template:insert>


頁首header.htm的代碼(由于只是教程,我并沒有進行頁面美化工作,大家可以根據(jù)自己的喜愛自定義)
<table width="90%" height="50" border="0" align="center" 
cellpadding="0" cellspacing="0">
<tr>
<td align="center"><strong>留 言 本</strong></td>
</tr>
</table>


頁尾footer.htm的源代碼
<table width="90%" border="0" align="center" cellpadding="0" 
cellspacing="0">
<tr>
<td align="center">留言本教程范例 2003-9-21</td>
</tr>
</table>


留言內(nèi)容顯示indexCnt.jsp的源代碼
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<jsp:useBean id="lyList" scope="session"
type="java.util.ArrayList"/>
<table width="90%" border="0" align="center" cellpadding="0"
 cellspacing="0">
<tr>
<td align="right"><html:link page="/editLy.do?action=Add">我要
留言</html:link> </td>
</tr>
</table>
<logic:iterate id="value" name="lyList"
type="guestbook.maxuan.ejb.entity.value.BookValue" 

indexId="index">
<table width="90%" border="0" align="center"
cellpadding="5" cellspacing="2">
<tr>
<td><font size="4"><b><bean:write
name="value" property="name"/></b></font><br>
Email:<a href='mailto:<bean:write
name="value" property="email"/>'><bean:write name="value" 

property="email"/></a>
| QQ:<bean:write name="value" property="qq"/> <br>
留言時間:<bean:write name="value" 

property="posttime"/><br><br>
<bean:write name="value" property="comment"/></td>
</tr>
<tr>
<td height="1"><hr size="1" noshade></td>
</tr>
</table>
</logic:iterate>


留言輸入頁面ly.jsp的源代碼
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<html>
<head>
<title>留言</title>
<meta http-equiv="Content-Type"
content="text/html; charset=gb2312">
</head>
<body>
<table width="70%" border="1" align="center" cellpadding="2"
cellspacing="2" 

bordercolor="#000000">
<html:form action="/saveLy">
<tr>
<td width="21%" height="20">姓名</td>
<td width="79%" height="20"><html:text property="name"
 size="20"/></td>
</tr>
<tr>
<td height="20">email</td>
<td height="20"><html:text property="email" size="20"/></td>
</tr>
<tr>
<td height="20">qq</td>
<td height="20"><html:text property="qq" size="20"/></td>
</tr>
<tr>
<td height="20">留言內(nèi)容</td>
<td height="20"><html:textarea property="comment" rows="5"
cols="50"/></td>
</tr>
<tr align="center">
<td height="20" colspan="2"><html:submit>保存</html:submit>
<html:reset>重置</html:reset></td>
</tr>
</html:form>
</table>
</body>
</html>
最后效果如圖:
此時我們的j2ee體系的留言本教程也就告于段落!
從這篇教程我們可以窺見j2ee多層體系結(jié)構(gòu)的端倪,
本篇教程只是一個基石,在此之上,你可以靈活地搭建更大型的應(yīng)用,
這才是我寫此文的最終目的!
后記:幻想曲花了30多分鐘的時間從經(jīng)典論壇中將maxuan9的帖子整理到了文檔區(qū),
希望對那些想學(xué)J2EE和正在學(xué)J2EE的朋友一點啟示、一點幫助!
 

出處:藍色理想
責(zé)任編輯:藍色

上一頁 [J2EE] 實戰(zhàn)留言本 [8] 下一頁 [J2EE] 實戰(zhàn)留言本[補遺]

◎進入論壇網(wǎng)絡(luò)編程版塊參加討論

相關(guān)文章 更多相關(guān)鏈接
xml留言本
flash留言本梯度教程(附源)
制作WAP留言本[ASP教程]
Dreamweaver MX 2004打造留言本
flashinn.com 免費FLASH留言本
作者文章
[J2EE] 實戰(zhàn)開發(fā)EJB
實戰(zhàn)留言簿(EJB,Struts應(yīng)用篇)
IIS6“_PATH_”問題解決小技巧
實戰(zhàn) J2EE 開發(fā)購物網(wǎng)站 經(jīng)驗篇
關(guān)鍵字搜索 常規(guī)搜索 推薦文檔
熱門搜索:CSS Fireworks 設(shè)計比賽 網(wǎng)頁制作 web標(biāo)準(zhǔn) 用戶體驗 UE photoshop Dreamweaver Studio8 Flash 手繪 CG
站點最新 站點最新列表
周大福“敬•自然”設(shè)計大賽開啟
國際體驗設(shè)計大會7月將在京舉行
中國國防科技信息中心標(biāo)志征集
云計算如何讓安全問題可控
云計算是多數(shù)企業(yè)唯一擁抱互聯(lián)網(wǎng)的機會
阿里行云
云手機年終巨獻,送禮標(biāo)配299起
阿里巴巴CTO王堅的"云和互聯(lián)網(wǎng)觀"
1499元買真八核 云OS雙蛋大促
首屆COCO桌面手機主題設(shè)計大賽
欄目最新 欄目最新列表
淺談JavaScript編程語言的編碼規(guī)范
如何在illustrator中繪制臺歷
Ps簡單繪制一個可愛的鉛筆圖標(biāo)
數(shù)據(jù)同步算法研究
用ps作簡單的作品展示頁面
CSS定位機制之一:普通流
25個最佳最閃亮的Eclipse開發(fā)項目
Illustrator中制作針線縫制文字效果
Photoshop制作印刷凹凸字體
VS2010中創(chuàng)建自定義SQL Rule
>> 分頁 首頁 前頁 后頁 尾頁 頁次:9/101個記錄/頁 轉(zhuǎn)到 頁 共10個記錄

藍色理想版權(quán)申明:除部分特別聲明不要轉(zhuǎn)載,或者授權(quán)我站獨家播發(fā)的文章外,大家可以自由轉(zhuǎn)載我站點的原創(chuàng)文章,但原作者和來自我站的鏈接必須保留(非我站原創(chuàng)的,按照原來自一節(jié),自行鏈接)。文章版權(quán)歸我站和作者共有。

轉(zhuǎn)載要求:轉(zhuǎn)載之圖片、文件,鏈接請不要盜鏈到本站,且不準(zhǔn)打上各自站點的水印,亦不能抹去我站點水印。

特別注意:本站所提供的攝影照片,插畫,設(shè)計作品,如需使用,請與原作者聯(lián)系,版權(quán)歸原作者所有,文章若有侵犯作者版權(quán),請與我們聯(lián)系,我們將立即刪除修改。

您的評論
用戶名:  口令:
說明:輸入正確的用戶名和密碼才能參與評論。如果您不是本站會員,你可以注冊 為本站會員。
注意:文章中的鏈接、內(nèi)容等需要修改的錯誤,請用報告錯誤,以利文檔及時修改。
不評分 1 2 3 4 5
注意:請不要在評論中含與內(nèi)容無關(guān)的廣告鏈接,違者封ID
請您注意:
·不良評論請用報告管理員,以利管理員及時刪除。
·尊重網(wǎng)上道德,遵守中華人民共和國的各項有關(guān)法律法規(guī)
·承擔(dān)一切因您的行為而直接或間接導(dǎo)致的民事或刑事法律責(zé)任
·本站評論管理人員有權(quán)保留或刪除其管轄評論中的任意內(nèi)容
·您在本站發(fā)表的作品,本站有權(quán)在網(wǎng)站內(nèi)轉(zhuǎn)載或引用
·參與本評論即表明您已經(jīng)閱讀并接受上述條款
推薦文檔 | 打印文檔 | 評論文檔 | 報告錯誤  
專業(yè)書推薦 更多內(nèi)容
網(wǎng)站可用性測試及優(yōu)化指南
《寫給大家看的色彩書1》
《跟我去香港》
眾妙之門—網(wǎng)站UI 設(shè)計之道
《Flex 4.0 RIA開發(fā)寶典》
《贏在設(shè)計》
犀利開發(fā)—jQuery內(nèi)核詳解與實踐
作品集 更多內(nèi)容

雜⑦雜⑧ Gold NORMANA V2