這篇文章主要為大家展示了“NetBeans Struts應(yīng)用的示例分析”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“NetBeans Struts應(yīng)用的示例分析”這篇文章吧。
成都創(chuàng)新互聯(lián)公司服務(wù)項(xiàng)目包括霍林郭勒網(wǎng)站建設(shè)、霍林郭勒網(wǎng)站制作、霍林郭勒網(wǎng)頁制作以及霍林郭勒網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,霍林郭勒網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到霍林郭勒省份的部分城市,未來相信會繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!
由于公司的一個系統(tǒng)需要進(jìn)行WEB化,對幾種常見的WEB技術(shù)進(jìn)行了調(diào)查。試用了下NetBeans Struts,理解了NetBeans Struts的開發(fā)流程。以下是試作的一個Login的小例子。
開發(fā)環(huán)境:JDK1.5.06 Struts1.2.7 NetBeans5.0(內(nèi)嵌Tomcat5.5.9)
1 首先,使用NB創(chuàng)建一個WEB工程:Hello。選中是否使用Struts1.2.7的復(fù)選框。
2 創(chuàng)建LoginActionForm.java文件:
public class LoginActionForm extends ActionForm ...{ private String userName; private String userPwd; public String getUserName() ...{ return userName; } public void setUserName(String userName) ...{ this.userName = userName; } public void setUserPwd(String userPwd) ...{ this.userPwd = userPwd; } public String getUserPwd() ...{ return userPwd; } }
3 創(chuàng)建LoginAction.java文件:
public class LoginAction extends Action ...{ public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) ...{ LoginActionForm loginForm = (LoginActionForm) form; String forword="success"; System.out.println("Name:" + loginForm.getUserName()); System.out.println("Passwd:" + loginForm.getUserPwd()); return mapping.findForward(forword); } }
4 創(chuàng)建Login.jsp文件:
<%@page contentType="text/html; charset=GBK"%> <html> <head> <title>login</title> </head> <body bgcolor="#ffffff"> <center> <h2>Welcome login into the system</h2> <form name="loginForm" method="post" action="loginAction.do"> <br> <br> <table align="center"> <tr> <td>UserName</td> <td> <input type="text" name="userName"/> </td> </tr> <tr> <td>Password</td> <td> <input type="password" name="userPwd"/> </td> </tr> <tr> <td> </td> <td> <input type="submit" name="Submit" value="Login"> <input type="reset" value="Reset"> </td> </tr> </table> </form> </center> </body> </html>
5 修改struts-config.xml文件,添加以下的內(nèi)容:
<form-beans> <form-bean name = "AddUserActionForm" type = "com.myapp.struts.AddUserActionForm"/> <form-bean name="loginActionForm" type="com.myapp.struts.LoginActionForm" /> </form-beans> <global-forwards> <forward name="welcome" path="/Welcome.do"/> <forward name="login" path="/login.jsp" /> </global-forwards> <action-mappings> <action path="/Welcome" forward="/welcomeStruts.jsp"/> <action input="/login.jsp" name="loginActionForm" path="/loginAction" scope="request" type = "com.myapp.struts.LoginAction" validate="true" /> </action-mappings>
6 部署:
使用NetBeans部署這個Web服務(wù),即可。
7 測試:
啟動Tomcat,在瀏覽器中輸入http://localhost:8084/Helo/login.jsp即可。
以上是“NetBeans Struts應(yīng)用的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
當(dāng)前文章:NetBeansStruts應(yīng)用的示例分析
文章網(wǎng)址:http://aaarwkj.com/article16/pdigdg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供小程序開發(fā)、面包屑導(dǎo)航、品牌網(wǎng)站制作、網(wǎng)站導(dǎo)航、企業(yè)建站、網(wǎng)站營銷
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)