• 2022-05-30
    以下哪种格式是正确的URL( )。
    A: http://localhost/8080/news/index.jsp
    B: http://localhost:8080/news/index.jsp
    C: http:localhost://8080/news/index.jsp
    D: http://localhost/8080:news/index.jsp
  • B

    内容

    • 0

      【单选题】假设web运行时根目录url为:http://localhost:8080/jsp2019,下面配置信息表示将ch10包中的RegisterServlet类映射后的url路径为() register ch10.RegisterServlet register /register/reg A. http://localhost:8080/jsp2019/reg.jsp B. http://localhost:8080/jsp2019/reg C. http://localhost:8080/jsp2019/register/reg D. http://localhost:8080/jsp2019/register/reg.jsp

    • 1

      你已部署了名为PTS的Web网站,在根目录下有login.jsp的页面。以下( )是访问页面的正确的方法。 A: http://localhost:8080/servlet/login.jsp B: http://localhost:8080/login.jsp C: http://localhost:8080/PTS/servlet/login.jsp D: http://localhost:8080/PTS/login.jsp

    • 2

      对于名为helloweb的Web应用程序,<;url-pattern>;的定义为/helloServlet/hello/abc.jsp,那么测试页面abc.jsp用的URL为( ) A: http://localhost:8080/helloweb/helloServlet/hello/abc.jsp B: http://localhost:8080/helloweb/abc.jsp C: http://localhost:8080/helloweb/helloServlet/abc.jsp D: http://localhost:8080/helloweb/hello/abc.jsp

    • 3

      【单选题】假设在helloapp应用工程中有一个HelloServlet类,它在web.xml文件中的配置如下: HelloServlet org.java.thinker.HelloServlet HelloServlet /hello 那么在浏览器端访问HelloServlet的URL是什么? () A. http://localhost:8080/HelloServlet B. http://localhost:8080/helloapp/HelloServlet C. http://localhost:8080/helloapp/org/javathinker/hello D. http://localhost:8080/helloapp/hello

    • 4

      在Servlet中使用语句“response.sendRedirect("test/main.jsp");”实现页面重定向时,如果当前Servlet位于为本机项目的test的子目录test中,则实际重定向的页面URL为( ) A: http://localhost:8080/main.jsp B: http://localhost:8080/test/main.jsp C: http://localhost:8080/test/test/main.jsp D: http://localhost:8080/test/test/test/main.jsp