欢迎来到天天文库
浏览记录
ID:37248491
大小:206.00 KB
页数:18页
时间:2019-05-20
《企业内高技能(JAVA)(三级)理论知识复习题》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、企业内高技能(JAVA)(三级)理论知识复习题代码试题假设标签描述文件放置在以下位置/WEB-INF/tld/example.tld且包含1则以下哪些JSPcode可放置在第一行,并且能正确调用该标签?A.<%@taglibprefix="ex"uri="/WEB-INF/tld"%>B.<%@tagliburi="/WEB-INF/tld/example.tld"%>C.<%@taglibprefix="ex"uri=http://localhost:8080/tld/example.tld%>D.<%@taglibprefix="ex"uri="/W
2、EB-INF/tld/example.tld"%>.Tomcat的一个实例运行在本地计算机的端口8080处。该Web服务器实例中部署有一名为MyWebApp的Web应用,其部署描述符文件片断如下:helloworldservletcom.mycompany.servlet.HelloworldServlet2helloworldservlet3、-name>/helloworld仅根据这些片断判断,可用下列哪些URI访问本机的名为helloworldservlet的Servlet?A.http://com.mycompany.servlet.HelloworldServlet:8080B.http://localhost:8080/helloworldC.http://localhost:8080/MyWebApp/helloworld.D.http://localhost:8080/MyWebApp/HelloworldSer
3、-name>/helloworld
4、vletE.http://localhost:8080/MyWebApp/com.mycompany.servlet.HelloworldServletF.http://localhost:8080/MyWebApp/com/mycompany/servlet/HelloworldServlet某Web应用的Web.xml有以下片断。LogFilterfilters.LogFilter35、-name>LogFiltermyServlet则可以断定A.该Web应用中包含一类名为LogFilter的过滤器.B.过滤器LogFilter只对myServlet起作用C.可通过URL:http://服务器名:端口/LogFilter访问该过滤器D.myServlet只拥有一个过滤器TestSession是位于URL“/MyWebApp/testsession”的HttpServlet类。其所有成员定义如下:publicvoidinit()throwsS
5、-name>LogFiltermyServlet
6、ervletException{}publicvoiddoPost(HttpServletRequestrequest,HttpServletResponseresponse)throwsServletException,IOException{PrintWriterout=response.getWriter();StringsessionID=request.getParameter("sessionID");if(sessionID==null){sessionID=Long.toString(1000L);out.println("noSession:");}else
7、{4out.println("HasSession:"+sessionID);}out.println("");out.println("");out.println("");out.println("
此文档下载收益归作者所有