-
Tomcat容器查看全部
-
什么是Servlet?查看全部
-
Model2查看全部
-
Model1查看全部
-
MVC模式查看全部
-
编写Servlet的doPost方法时,需要抛出异常为 A ServletException, IOException B ServletException, RemoteException C HttpServletException, IOException D HttpServletException, RemoteException 编写Servlet的doPost方法时,需要抛出ServletExcpetion和IOException异常,不会抛出HttpServletException和RemoteException异常。查看全部
-
servlet生命周期查看全部
-
servlet执行流程 get请求---web.xml中寻找对应--对应name--对应class路径--doget方法查看全部
-
假设在helloapp应用中有一个HelloServlet类,它在 web.xml文件中的配置如下: <servlet> <servlet-name>HelloServlet</servlet-name> <servlet-class>org.javathinker.HelloServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>HelloServlet</servlet-name> <url-pattern>/hello</url-pattern> </servlet-mapping> 那么在浏览器端访问HelloServlet的URL是什么? 解析 正确的URL地址是:http://localhost:8080/helloapp/hello,其中localhost是服务器主机名,也可以是IP地址127.0.0.1;8080是tomcat服务器的端口号;helloapp是web工程的上下文地址ContexRoot(一般情况下与web工程名一致);最后是<url-pattern/>标签中的内容。查看全部
-
转 eclipse JEE 3.6 (或以上版本)新建 Dynamic web Project,直接单击 finish按钮 后 WEB-INF 下没有web.xml文件? 原因是: 新建面板上的 “Dynamic web module version” 选项,默认是 servlet 3.0的版本,该版本,默认是没有web.xml文件的,如果你习惯老版本规范,当在你新建工程的时候,不要单击 finish按钮直接完成创建,单击 next 按钮,在最后一步,选中: “Generate web.xml deployment descriptor”就可以了 Eclipse JEE 3.6 以上版本新建web项目后,WEB-INF下没有web.xml 创建Dynamic web module version这个选项默认成了3.0, 按照老规范,应该是在eclipse的WebContent \ WEB-INF \ 目录下创建web.xml的 而新规范是可以不用web.xml的,如tomcat 7.0就支持新规范, 这样相关的servlet配置会以注解的形式直接写到代码里面了,比如@WebServlet。查看全部
-
指定文件输出类型查看全部
-
超链接访问是以get形式查看全部
-
编写servlet需经历的步骤查看全部
-
Servlet的容器管理Context容器,一个Context对应一个Web工程。查看全部
-
Servler是在服务器上运行的小程序。一个Servlet是一个Java类,并且可以通过“请求-响应”编程模型来访问的这个驻留在服务器内存中的Servlet程序。查看全部
举报
0/150
提交
取消