网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
7、在Web开发中,为了更方便地使用JSP技术,为JSP技术提供了三种开发模型:JSP Model1,JSP Model2和MVC模式。()
参考答案和解析
HTML主要用于网页的结构设计,CSS用于网页外观的设计,JavaScript用于在网页中添加各种行为,增强用户与网页的互动。
更多 “7、在Web开发中,为了更方便地使用JSP技术,为JSP技术提供了三种开发模型:JSP Model1,JSP Model2和MVC模式。()” 相关考题
考题
在J2EE中,在aa.jsp中有行代码:%request.setAttribute(Co.,jb-aptech%request.setAttribute(Co.,jb-aptech);%在bb.jsp中有行代码:%out.println((String)request.getAttribute(Co.));%为了使得在bb.jsp中的如上代码可以显示jb-aptech”,可以使用()方法。A.在aa.jsp中使用formmethod=postaction=bb.jsp把请求提交到bb.jspB.在aa.jsp中使用jsp:forwardfile=bb.jsp/把页面重定向到bb.jspC.在aa.jsp中使用%response.sendRedirect(bb.jsp);%把页面重定向到bb.jspD.在aa.jsp中使用%@includefile=bb.jsp%包含页面bb.jspE.在aa.jsp中使用%config.getServletContext().getRequestDispatcher(/bb.jsp).forward(request,response);%把页面重定向到bb.jsp
考题
下列关于JSP说法中不正确的是()。
A、JSP是IBM公司推出的新一代站点开发语言B、JSP解决了目前ASP、PHP的一个通病——脚本级执行C、JSP将内容的生成和显示进行分离D、JSP强调可重用的组件
考题
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
考题
在J2EE中,在aa.jsp中有行代码: %% request.setAttribute("Co.","jb-aptech"); % 在bb.jsp中有行代码: % out.println((String)request.getAttribute("Co.")); % % 为了使得在bb.jsp中的如上代码可以显示“jb-aptech”,可以使用()方法。A、在aa.jsp中使用form method=post action="bb.jsp"把请求提交到bb.jsp B、在aa.jsp中使用jsp:forward file="bb.jsp" /把页面重定向到bb.jsp C、在aa.jsp中使用% response.sendRedirect("bb.jsp"); %把页面重定向到bb.jsp D、在aa.jsp中使用%@ include file="bb.jsp" %包含页面bb.jsp E、在aa.jsp中使用% config.getServletContext().getRequestDispatcher("/bb.jsp").forward(request,response); %把页面重定向到bb.jsp
考题
关于Struts下面描述正确的是()。A、Struts是采用Java Servlet/JavaServer Pages技术B、开发Web应用程序的开放源码的frameworkC、采用Struts能开发出基于MVC设计模式的应用构架D、Struts采用的是JSP Model1
考题
以下描述JSP与Servlet的关系,正确的有()A、jsp最后会编译成servlet来执行B、MVC中Servlet做C、jsp做VC、Servlet在代码中输出htmlD、JSP和Servlet都是解释执行E、JSP是编译执行,而Servlet是解释执行
考题
MVC中的MVC分别用()、()、()表示。A、jsp;servlet;javabeanB、HTml;javabean;jspC、javabean;jsp;servletD、servlet;html;jsp
考题
在JSP中,若要在JSP正确使用标签:,在jsp中声明的taglib指令为:%@tagliburi=“/WEB-INF/myTags.tld”prefix=“()”%。A、xB、getKingC、myTagsD、king
考题
下列对于JSP说法中正确的是()A、JSP是Sun公司推出的新一代站点开发语言B、JSP完全解决了目前ASP、PHP的一个通病——脚本级执行C、JSP将内容的生成和显示进行分离D、JSP强调可重用的组件E、JSP采用标识简化页面开发
考题
下面对于标签的说法中错误的是()A、JSP标签用于调用JavaBean组件中的操作和执行B、JSP标签简化了JSP页面的开发和维护C、JSP技术没有提供了在自定义标签中封装其他动态功能的机制D、自定义标签通过封装反复执行的任务使它们可以在多个应用程序中重复使用E、自定义标签通常是以标签库的形式出现的
考题
You are building your own layout mechanism by including dynamic content for the page’s header and footersections. The footer is always static, but the header generates the tag that requires the page name tobe specified dynamically when the header is imported. Which JSP code snippet performs the import of theheader content?() titleA、jsp:include page=’/WEB-INF/jsp/header.jsp’jsp:param name=’pageName’ value=’Welcome Page’ / /jsp:includeB、jsp:import page=’/WEB-INF/jsp/header.jsp’jsp:param name=’pageName’ value=’Welcome Page’ / /jsp:importC、jsp:include page=’/WEB-INF/jsp/header.jsp’jsp:attribute name=’pageName’ value=’Welcome Page’ / . /jsp:includeD、jsp:import page=’/WEB-INF/jsp/header.jsp’. jsp:attribute name=’pageName’ value=’Welcome Page’ / . /jsp:import
考题
单选题You are building your own layout mechanism by including dynamic content for the page’s header and footersections. The footer is always static, but the header generates the tag that requires the page name tobe specified dynamically when the header is imported. Which JSP code snippet performs the import of theheader content?()A
jsp:include page=’/WEB-INF/jsp/header.jsp’jsp:param name=’pageName’ value=’Welcome Page’ / /jsp:includeB
jsp:import page=’/WEB-INF/jsp/header.jsp’jsp:param name=’pageName’ value=’Welcome Page’ / /jsp:importC
jsp:include page=’/WEB-INF/jsp/header.jsp’jsp:attribute name=’pageName’ value=’Welcome Page’ / . /jsp:includeD
jsp:import page=’/WEB-INF/jsp/header.jsp’. jsp:attribute name=’pageName’ value=’Welcome Page’ / . /jsp:import
考题
多选题关于Struts下面描述正确的是()AStruts是采用 Java Servlet/JavaServer Pages技术。B开发Web应用程序的开放源码的frameworkC采用Struts能开发出基于MVC设计模式的应用框架。DStruts采用的是 Jsp Model1。
考题
多选题在J2EE中,在aa.jsp中有行代码: 在bb.jsp中有行代码: 为了使得在bb.jsp中的如上代码可以显示“jb-aptech”,可以使用()方法。A在aa.jsp中使用form method=post action=bb.jsp把请求提交到bb.jspB在aa.jsp中使用jsp:forward file=bb.jsp /把页面重定向到bb.jspC在aa.jsp中使用% response.sendRedirect(bb.jsp); %把页面重定向到bb.jspD在aa.jsp中使用%@ include file=bb.jsp %包含页面bb.jspE在aa.jsp中使用% config.getServletContext().getRequestDispatcher(/bb.jsp).forward(request,response); %把页面重定向到bb.jsp
考题
单选题Your web application views all have the same header, which includes the tag in the elementof the rendered HTML. You have decided to remove this redundant HTML code from your JSPs and put itinto a single JSP called /WEB-INF/jsp/header.jsp. However, the title of each page is unique, so you havedecided to use a variable called pageTitle to parameterize this in the header JSP, like this: 10.${param.pageTitle} Which JSP code snippet should you use in your main view JSPs to insert the header and pass thepageTitle variable?()A
jsp:insert page=’/WEB-INF/jsp/header.jsp’. ${pageTitle=’Welcome Page’}. /jsp:insertB
jsp:include page=’/WEB-INF/jsp/header.jsp’. ${pageTitle=’Welcome Page’}. /jsp:includeC
jsp:include file=’/WEB-INF/jsp/header.jsp’. ${pageTitle=’Welcome Page’}. /jsp:includeD
jsp:insert page=’/WEB-INF/jsp/header.jsp’. jsp:param name=’pageTitle’ value=’Welcome Page’ / . /jsp:insertE
jsp:include page=’/WEB-INF/jsp/header.jsp’. jsp:param name=’pageTitle’ value=’Welcome Page’ / . /jsp:include
考题
单选题MVC中的MVC分别用()、()、()表示。A
jsp;servlet;javabeanB
HTml;javabean;jspC
javabean;jsp;servletD
servlet;html;jsp
热门标签
最新试卷