多选题Scrvlet与JSP的区别是()。A性能更强B编程方式不同C运行速度不同D编译顺序不同
多选题
Scrvlet与JSP的区别是()。
A
性能更强
B
编程方式不同
C
运行速度不同
D
编译顺序不同
参考解析
解析:
暂无解析
相关考题:
JSP是一种Java服务器端技术,其实质是一个Servlet。与Servlet的生命周期相同,JSP也有生命周期。在JSP的生命周期中,JSP引擎调用一系列的方法执行JSP,其中不包括( )A、jspInitB、jspActivateC、jspServiceD、jspDestroy
Youarebuildingyourownlayoutmechanismbyincludingdynamiccontentforthepage’sheaderandfootersections.Thefooterisalwaysstatic,buttheheadergeneratesthetitletagthatrequiresthepagenametobespecifieddynamicallywhentheheaderisimported.WhichJSPcodesnippetperformstheimportoftheheadercontent?()A.jsp:includepage=’/WEB-INF/jsp/header.jsp’jsp:paramname=’pageName’value=’WelcomePage’//jsp:includeB.jsp:importpage=’/WEB-INF/jsp/header.jsp’jsp:paramname=’pageName’value=’WelcomePage’//jsp:importC.jsp:includepage=’/WEB-INF/jsp/header.jsp’jsp:attributename=’pageName’value=’WelcomePage’/./jsp:includeD.jsp:importpage=’/WEB-INF/jsp/header.jsp’.jsp:attributename=’pageName’value=’WelcomePage’/./jsp:import
WhichJSPstandardactioncanbeusedtoimportcontentfromaresourcecalledfoo.jsp?() A.jsp:importfile=’foo.jsp’/B.jsp:importpage=’foo.jsp’/C.jsp:includepage=’foo.jsp’/D.jsp:includefile=’foo.jsp’/
以下描述JSP与Servlet的关系,正确的有()A、jsp最后会编译成servlet来执行B、MVC中Servlet做C、jsp做VC、Servlet在代码中输出htmlD、JSP和Servlet都是解释执行E、JSP是编译执行,而Servlet是解释执行
关于JSP的描述,哪个正确()。A、JSP是直译式的网页,与Servlet无关B、JSP会先转译为.java,然后编译为.class载入容器C、JSP会直接由容器动态生成Servlet实例,无需转译D、JSP是丢到浏览器端,由浏览器进行直译
填空题JSP有七项标准的“动作元素”,本章学习四种“动作元素”分别是(),(),(),()。