JSP开发Web站点的主要方式有:直接JSP、JSP+JavaBean、JSP+JavaBean+Servlet、______________和SSH。

题目

JSP开发Web站点的主要方式有:直接JSP、JSP+JavaBean、JSP+JavaBean+Servlet、______________和SSH。


相似考题
更多“JSP开发Web站点的主要方式有:直接JSP、JSP+JavaBean、JSP+JavaBean+Servlet、______________和SSH。”相关问题
  • 第1题:

    Yourwebapplicationviewsallhavethesameheader,whichincludesthe<title>taginthe<head>elementoftherenderedHTML.YouhavedecidedtoremovethisredundantHTMLcodefromyourJSPsandputitintoasingleJSPcalled/WEB-INF/jsp/header.jsp.However,thetitleofeachpageisunique,soyouhavedecidedtouseavariablecalledpageTitletoparameterizethisintheheaderJSP,likethis:

    10.<title>${param.pageTitle}<title>

    WhichJSPcodesnippetshouldyouuseinyourmainviewJSPstoinserttheheaderandpassthepageTitlevariable?()


    参考答案:E

  • 第2题:

    有两个页面a.jsp和b.jsp,要从a.jsp传值到b.jsp有几种方法?分别是什么?


    正确答案:

     

    a:最常用的方法是用form中的text,<input type=text name=username value=admin>,然后在b.jsp页面中这样获取
    String username=request.getParameter("username");
    b:直接在Url地址栏里面输入第一个页面的地址,在后加问号,然后把要传的参数及值写在后面,如有多个用&隔开,然后在下一页面用
    request.getParameter("参数名")来获取,在b.jsp中可用这样获取:String username=request.getParameter("username");String username=request.getParameter("password");
    c:在form中放hidden,如:<input type=hidden name=username value=admin>,获取方法同上
    说明:传值的方法有很多种,以上是最常用最简单的几种方式,当然,如果传的值有中文的话,需另做处理

  • 第3题:

    下图为Web站点的文档属性窗口,若主目录下只有Default.jsp、index.htm和iisstart.htm三个文件,则客户端访问网站时浏览的文件是()。

    A.Default.htm
    B.Default.jsp
    C.index.htm
    D.iisstart.htm

    答案:C
    解析:

  • 第4题:

    以下选项中()不是开发JSP应用程序所必需的。

    • A、JDK
    • B、J2EE SDK
    • C、web服务器
    • D、开发工具Eclipse

    正确答案:B

  • 第5题:

    Web开发技术中的客户端技术有()。

    • A、超文本标记语言
    • B、脚本语言
    • C、可扩展标记语言
    • D、ASP
    • E、JSP

    正确答案:A,B,C

  • 第6题:

    JSP+JavaBean模式,这种模式通常称为“Model1模式。


    正确答案:正确

  • 第7题:

    下列对于JSP说法中正确的是()

    • A、JSP是Sun公司推出的新一代站点开发语言
    • B、JSP完全解决了目前ASP、PHP的一个通病——脚本级执行
    • C、JSP将内容的生成和显示进行分离
    • D、JSP强调可重用的组件
    • E、JSP采用标识简化页面开发

    正确答案:A,B,C,D,E

  • 第8题:

    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?() <title>

    • A、<jsp:include page=’/WEB-INF/jsp/header.jsp’><jsp:param name=’pageName’ value=’Welcome Page’ /> </jsp:include>
    • B、<jsp:import page=’/WEB-INF/jsp/header.jsp’><jsp:param name=’pageName’ value=’Welcome Page’ /> </jsp:import>
    • C、<jsp:include page=’/WEB-INF/jsp/header.jsp’><jsp:attribute name=’pageName’ value=’Welcome Page’ /> . </jsp:include>
    • D、<jsp:import page=’/WEB-INF/jsp/header.jsp’>. <jsp:attribute name=’pageName’ value=’Welcome Page’ /> . </jsp:import>

    正确答案:A

  • 第9题:

    判断题
    JSP+JavaBean模式,这种模式通常称为“Model1模式。
    A

    B


    正确答案:
    解析: 暂无解析

  • 第10题:

    判断题
    JSP开发网站的两种模式分为jsp+javabean和jsp+javabean+servlet。
    A

    B


    正确答案:
    解析: 暂无解析

  • 第11题:

    单选题
    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:include>

    B

    <jsp:import page=’/WEB-INF/jsp/header.jsp’><jsp:param name=’pageName’ value=’Welcome Page’ /> </jsp:import>

    C

    <jsp:include page=’/WEB-INF/jsp/header.jsp’><jsp:attribute name=’pageName’ value=’Welcome Page’ /> . </jsp:include>

    D

    <jsp:import page=’/WEB-INF/jsp/header.jsp’>. <jsp:attribute name=’pageName’ value=’Welcome Page’ /> . </jsp:import>


    正确答案: D
    解析: 暂无解析

  • 第12题:

    单选题
    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:insert>

    B

    <jsp:include page=’/WEB-INF/jsp/header.jsp’>. ${pageTitle=’Welcome Page’}. </jsp:include>

    C

    <jsp:include file=’/WEB-INF/jsp/header.jsp’>. ${pageTitle=’Welcome Page’}. </jsp:include>

    D

    <jsp:insert page=’/WEB-INF/jsp/header.jsp’>. <jsp:param name=’pageTitle’ value=’Welcome Page’ /> . </jsp:insert>

    E

    <jsp:include page=’/WEB-INF/jsp/header.jsp’>. <jsp:param name=’pageTitle’ value=’Welcome Page’ /> . </jsp:include>


    正确答案: C
    解析: 暂无解析

  • 第13题:

    YouarebuildingJSPpagesthathaveasetofmenusthatarevisiblebasedonauser’ssecurityrole.Thesemenusarehand-craftedbyyourwebdesignteam;forexample,theSalesManagerrolehasamenuinthefile/WEB-INF/html/sales-mgr-menu.html.WhichJSPcodesnippetshouldbeusedtomakethismenuvisibletotheuser?()

    A.<%if(request.isUserInRole("SalesManager")){%><%@includefile=’/WEB-INF/html/sales-mgr-menu.html’%><%}%>

    B.<jsp:iftest=’request.isUserInRole("SalesManager")’><%@includefile=’/WEB-INF/html/sales-mgr-menu.html’%></jsp:if>

    C.<%if(request.isUserInRole("SalesManager")){%>.<jsp:includefile=’/WEB-INF/html/sales-mgr-menu.html’/>.<%}%>

    D.<jsp:iftest=’request.isUserInRole("SalesManager")’><jsp:includefile=’/WEB-INF/html/sales-mgr-menu.html’/></jsp:if>


    参考答案:A

  • 第14题:

    有三个页面,a.jsp,b.jsp和c.jsp,流程是:a.jsp->b.jsp->c.jsp,其中a.jsp中提交的数据要在c.jsp中访问,用最简单的方法 怎么做?注意不能放在session里


    正确答案:

     

    用隐藏表单域,即在b.jsp页面中用N个hidden把上一页面提交过来的信息保存下来,然后和当前一起提交,再到c.jsp里面获取
    说明:尽量不要用session和少用session

  • 第15题:

    目前JavaBeans和JSP技术是Web应用服务器三层结构中的中间层业务逻辑开发的主要工具。


    正确答案:正确

  • 第16题:

    关于JSP的论述,正确的有()

    • A、JSP是JavaScript的简称
    • B、JSP可以直接编译成class文件
    • C、JSP是被解释成HttpServlet后再编译的
    • D、JSP是被解释成HttpJspPage后再编译的

    正确答案:D

  • 第17题:

    To take advantage of the capabilities of modern browsers that use web standards, such as XHTML andCSS, your web application is being converted from simple JSP pages to JSP Document format. However,one of your JSPs, /scripts/screenFunctions.jsp, generates a JavaScript file. This file is included in severalweb forms to create screen-specific validation functions and are included in these pages with the followingstatement: 10. 11.  14. 15. Which JSP code snippet declares that this JSP Document is a JavaScript file?()

    • A、<%@ page contentType=’application/javascript’ %>
    • B、<jsp:page contentType='application/javascript' />
    • C、<jsp:document contentType='application/javascript' />
    • D、<jsp:directive.page contentType='application/javascript' />
    • E、No declaration is needed because the web form XHTML page already declares the MIME type of the /scripts/screenFunctions.jsp file in the <script> tag.

    正确答案:D

  • 第18题:

    在JSP中,若要在JSP正确使用标签:,在jsp中声明的taglib指令为:<%@tagliburi=“/WEB-INF/myTags.tld”prefix=“()”%>。

    • A、x
    • B、getKing
    • C、myTags
    • D、king

    正确答案:A

  • 第19题:

    JSP开发网站的两种模式分为jsp+javabean和jsp+javabean+servlet。


    正确答案:正确

  • 第20题:

    You are building JSP pages that have a set of menus that are visible based on a user’s security role. Thesemenus are hand-crafted by your web design team; for example, the SalesManager role has a menu in thefile /WEB-INF/html/sales-mgr-menu.html. Which JSP code snippet should be used to make this menuvisible to the user?()

    • A、<% if ( request.isUserInRole("SalesManager") ) { %> <%@ include file=’/WEB-INF/html/sales-mgr-menu.html’ %> <% } %>
    • B、<jsp:if test=’request.isUserInRole("SalesManager")’> <%@ include file=’/WEB-INF/html/sales-mgr-menu.html’ %> </jsp:if>
    • C、<% if ( request.isUserInRole("SalesManager") ) { %> . <jsp:include file=’/WEB-INF/html/sales-mgr-menu.html’ /> . <% } %>
    • D、<jsp:if test=’request.isUserInRole("SalesManager")’> <jsp:include file=’/WEB-INF/html/sales-mgr-menu.html’ /> </jsp:if>

    正确答案:A

  • 第21题:

    判断题
    目前JavaBeans和JSP技术是Web应用服务器三层结构中的中间层业务逻辑开发的主要工具。
    A

    B


    正确答案:
    解析: 暂无解析

  • 第22题:

    单选题
    Which JSTL code snippet can be used to import content from another web resource?()
    A

    <c:import url=foo.jsp/>

    B

    <c:import page=foo.jsp/>

    C

    <c:include url=foo.jsp/>

    D

    <c:include page=foo.jsp/>


    正确答案: C
    解析: 暂无解析

  • 第23题:

    单选题
    You are building JSP pages that have a set of menus that are visible based on a user’s security role. Thesemenus are hand-crafted by your web design team; for example, the SalesManager role has a menu in thefile /WEB-INF/html/sales-mgr-menu.html. Which JSP code snippet should be used to make this menuvisible to the user?()
    A

    <% if ( request.isUserInRole(SalesManager) ) { %> <%@ include file=’/WEB-INF/html/sales-mgr-menu.html’ %> <% } %>

    B

    <jsp:if test=’request.isUserInRole(SalesManager)’> <%@ include file=’/WEB-INF/html/sales-mgr-menu.html’ %> </jsp:if>

    C

    <% if ( request.isUserInRole(SalesManager) ) { %> . <jsp:include file=’/WEB-INF/html/sales-mgr-menu.html’ /> . <% } %>

    D

    <jsp:if test=’request.isUserInRole(SalesManager)’> <jsp:include file=’/WEB-INF/html/sales-mgr-menu.html’ /> </jsp:if>


    正确答案: C
    解析: 暂无解析

  • 第24题:

    单选题
    下面语句中,正确的是()
    A

    public.class.AddAction.implements.Action{...extends.Action

    B

    mapping.findForward(/ch01/result.jsp);findForward(“name”),new.ActionForward(“/ch01/result.jsp”)

    C

    form.method=getaction=add.do

    D

    action.name=addActionpath=/addtype=y2ssh.sg.web.action.AddActionName指form的名字


    正确答案: A
    解析: 暂无解析