java web试题精选
在日常的学习、工作、生活中,肯定对各类范文都很熟悉吧。那么我们该如何写一篇较为完美的范文呢?以下是我为大家搜集的优质范文,仅供参考,一起来看看吧
java web试题篇一
%catalina_home%/webapps/helloapp/hello/ c 那么在浏览器端访问的url是什么? 选项:
(a)http://localhost:8080/(b)http://localhost:8080/helloapp/(c)http://localhost:8080/helloapp/hello/
(2)假设在helloapp应用中有一个helloservlet类,inker包下,那么这个类的class文件应该放在什么目录下?(2)选项:
(a)helloapp/(b)helloapp/web-inf/(c)helloapp/web-inf/classes/(d)helloapp/web-inf/classes/org/javathinker/
(3)假设在helloapp应用中有一个helloservlet类,文件中的配置如下:
那么在浏览器端访问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)客户请求访问html页面与访问servlet有什么异同? 选项:
(a)相同:都使用http协议
(b)区别:前者web服务器直接返回html页面,后者web服务器调用servlet的方法,由servlet动态生成html页面
(c)相同:前者web服务器直接返回html页面,后者web服务器直接返回servlet的源代码。(d)区别:中配置url路径。(e)区别:前者使用http协议,后者使用rmi协议。
(5)httpservletrequest对象是由谁创建的? 选项:
(a)由servlet容器负责创建,对于每个http请求,servlet容器都会创建一个httpservletrequest对象
(b)由javaweb应用的servlet或jsp组件负责创建,当servlet或jsp组件响应http请求时,先创建
httpservletrequest对象
(6)从http请求中,获得请求参数,应该调用哪个方法? 选项:
(a)调用httpservletrequest对象的getattribute()方法(b)调用servletcontext对象的getattribute()方法(c)调用httpservletrequest对象的getparameter()方法
(7)servletcontext对象是由谁创建的? 选项:
(a)由servlet容器负责创建,对于每个http请求,servlet容器都会创建一个servletcontext对象(b)由javaweb应用本身负责为自己创建一个servletcontext对象
(c)由servlet容器负责创建,对于每个javaweb应用,在启动时,servlet容器都会创建一个servletcontext对象
(8),中如何实现?选项:
(a) (b)