欢迎来到天天文库
浏览记录
ID:51617557
大小:667.50 KB
页数:55页
时间:2020-03-26
《Java语言程序设计10E LiangPPT习题案例38slide.ppt》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、1Chapter38JavaServerPage2ObjectivesTocreateasimpleJSPpage(§38.2).ToexplainhowaJSPpageisprocessed(§38.3).TouseJSPconstructstocodeJSPscript(§38.4).TousepredefinedvariablesanddirectivesinJSP(§§38.5-38.6).TouseJavaBeanscomponentsinJSP(§38.7-38.9).Todevelopdatabaseappli
2、cationsusingJSP(§38.7-38.9).ToforwardrequestsfromaJSPpagetoanother(§38.10).3ASimpleJSP
3、ofscriptingconstructsyoucanusetoinsertJavacodeintotheresultantservlet.Theyareexpressions,scriptlets,anddeclarations.expressionscriptletdeclarationAJSPexpressionisusedtoinsertaJavaexpressiondirectlyintotheoutput.Ithasthefollowingform:<%=Java-expression%>Theexpressio
4、nisevaluated,convertedintoastring,andsenttotheoutputstreamoftheservlet.6JSPConstructsTherearethreetypesofscriptingconstructsyoucanusetoinsertJavacodeintotheresultantservlet.Theyareexpressions,scriptlets,anddeclarations.expressionscriptletdeclarationAJSPscriptletena
5、blesyoutoinsertaJavastatementintotheservlet’sjspServicemethod,whichisinvokedbytheservicemethod.AJSPscriptlethasthefollowingform:<%Javastatement%>7JSPConstructsTherearethreetypesofscriptingconstructsyoucanusetoinsertJavacodeintotheresultantservlet.Theyareexpressions
6、,scriptlets,anddeclarations.expressionscriptletdeclarationAJSPdeclarationisfordeclaringmethodsorfieldsintotheservlet.Ithasthefollowingform:<%!Javamethodorfielddeclaration%>8JSPCommentHTMLcommentshavethefollowingform:Ifyoudon’twantthecommentappeari
7、ntheresultantHTMLfile,usethefollowingcommentinJSP:<%--JSPComment--%>9Listing38.1ComputingFactorials
8、f(n==0)return1;elsereturnn*computeFactorial(n-1);}%>JSPscriptletJSPexpressionJSPdeclarationRun10JSPPredefinedVariablesYoucanusevari
此文档下载收益归作者所有