A.<welcome-file>start.jsp</welcome.-file>
B.<welcome-file-list>start.jsp</welcome.-file-list>
C.<welcome-file><welcome-file>start.jsp</welcome-file></welcome.-file>
D.<welcome-file-list><welcome-file>start.jsp</welcome.-file></welcome-file-list>
第1题:
A、http://localhost:8080/hello.jsp
B、http://localhost:8080/helloapp/hello.jsp
C、http://localhost:8080/helloapp/hello/hello.jsp
D、http://localhost:8080/webapps/helloapp/hello/dello.jsp
第2题:
3、tomcat不修改默认端口的情况下,访问hello这个web应用的login.html文件时,在浏览器地址栏写的url ()
A.http://localhost/hell/login
B.http://localhost:8080/hello/login.html
C.http://hello/login.jsp
D.http://localhost/hello/login.html
第3题:
新建一个index.jsp页面(位于test项目WebContent目录下的jsp文件夹),然后将test项目发布到Tomcat中并启动项目,请问在浏览器上输入下列哪个地址可以正常访问index.jsp页面()(在本机上并使用默认端口号)
A.http://localhost/test/index.jsp
B.http://localhost:8080/test/WebContent/index.jsp
C.http://localhost:8080/test/WebContent/jsp/index.jsp
D.http://localhost:8080/test /index.jsp
第4题:
假设在helloapp应用中有一个hello.jsp,它的文件路径如下: <CATALINA_HOME>/webapps/helloapp/hello/hello.jsp 在web.xml文件中没有对hello.jsp作任何配置,那么浏览器端访问hello.jsp的URL是什么?
A.http://localhost:8080/hello.jsp
B.http://localhost:8080/helloapp.jsp
C.http://localhost:8080/helloapp/hello/hello.jsp
D.http://localhost:8080/hello
第5题:
作业要求: 1-在浏览器地址栏输入:http://127.0.0.1:8080/MyWebApp/hello?name=你的名字 2-浏览器显示:hello,你的名字! 作业上交信息: 1-servlet代码 2-web.xml中servlet配置代码