資源描述:
《韓順平servlet筆記(完整代碼).doc》由會(huì)員上傳分享,免費(fèi)在線(xiàn)閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫(kù)。
1、目錄一、前序工作2二、Classes文件寫(xiě)一個(gè)Hello.java2寫(xiě)java文件2配置web.xml文件3上網(wǎng)驗(yàn)證4三、寫(xiě)登陸界面4寫(xiě)java文件5配置web.xml文件7上網(wǎng)驗(yàn)證7四、同一用戶(hù)的不同頁(yè)面共享數(shù)據(jù)8用sendRedirct()方法實(shí)現(xiàn)8用隱藏表單實(shí)現(xiàn)11Session11五、Servlet鏈接數(shù)據(jù)庫(kù)13建數(shù)據(jù)庫(kù)的表13寫(xiě)java文件13放jar包16Sql注入漏洞16六、Servlet中顯示圖片18七、分頁(yè)技術(shù)19八、cookie24使用cookie保存用戶(hù)名,密碼,在一定時(shí)間不用重復(fù)登陸24刪除cookie2
2、9九、網(wǎng)站框架30十、ServletContext38網(wǎng)站計(jì)數(shù)器39優(yōu)化40用戶(hù)ip地址42十一、界面美化42十二、tomcat配置59如何修改tomcat端口59如何設(shè)置虛擬目錄60如何給tomcat的管理員設(shè)置密碼61如何設(shè)置數(shù)據(jù)源和連接池62附錄63Jcreator不能導(dǎo)入javax.servlet包問(wèn)題63本文數(shù)據(jù)庫(kù)數(shù)據(jù)庫(kù)64本文Web.xml文件配置64一、前序工作Tomcat安裝好后再webapps文件夾下新建mywebsite,里面包括WEB-INF,在里面是classes,lib和web.xml文件。Jcreat
3、or配置好jdk路徑后servlet也需要導(dǎo)入,configure—>options—>jdkprofile,選中jdkvension,點(diǎn)edit—>addàaddachieve,選擇tomcat里lib下的servlet-api,就ok了。詳細(xì)看附錄。二、Classes文件寫(xiě)一個(gè)Hello.java寫(xiě)java文件有三種方法:/*使用實(shí)現(xiàn)servlet接口的方式開(kāi)發(fā)(不全)packagecom.tsinghua;//一個(gè)自定義的包importjavax.servlet.*;importjava.io.*;importjava.i
4、o.IoException;publicclassHelloimplementsServlet{//該函數(shù)用于初始化servlet(類(lèi)似與構(gòu)造函數(shù))//該函數(shù)只會(huì)被調(diào)用一次publicvoidinit(ServletConfigparml)throwsServletException{System.out.println("initit");}publicServletConfiggetServletConfig(){returnnull;}//這個(gè)函數(shù)用于處理業(yè)務(wù)邏輯//程序員應(yīng)該把業(yè)務(wù)邏輯代碼寫(xiě)這里//這個(gè)函數(shù)當(dāng)用戶(hù)每訪(fǎng)問(wèn)s
5、ervlet時(shí),都會(huì)被調(diào)用//req:用于獲得客戶(hù)端(瀏覽器)信息res:用于向客戶(hù)端(瀏覽器)返回信息publicvoidservice(ServletRequestreq,ServletResponseres)throwsServletException{System.out.println("serviceit");//從res中得到printWriterPrintWriterpw=res.getWriter();pw.println("hello,world");}publicvoiddestroy(){}}//方法二,
6、繼承GenericServlet(不全)packagecom.tsinghua;importjavax.servlet.GenericServlet;importjavax.servlet.*;importjava.io.*;publicclassHelloGenenextendsGenericServlet{//重寫(xiě)service方法publicvoidservice(ServletRequestreq,ServletResponseres){//返回hello,worldtry{PrintWriterpw=res.getWr
7、iter();pw.println("hello,world,generc");}catch(Exceptionex){ex.printStackTrace();}}}*///方法三,繼承HttpServlet開(kāi)發(fā)packagecom.tsinghua;importjavax.servlet.http.*;importjava.io.*;publicclassHelloextendsHttpServlet{//處理get請(qǐng)求publicvoiddoGet(HttpServletRequestreq,HttpServletResp
8、onseres){//業(yè)務(wù)邏輯try{PrintWriterpw=res.getWriter();pw.println("hellohttp");}catch(Exceptionex){ex.printStackTrace();}}publicvoiddoPos