helloServlet

第一步创建maven项目,配置pom.xml下载jar包,创建Java源文件夹和resours资源文件夹

helloServlet_第1张图片

helloServlet_第2张图片

helloServlet_第3张图片

helloServlet_第4张图片

第二步将web.xml改成最新配置

helloServlet_第5张图片

第三步编写servlet类,sun公司有两个已经写好的servlet的类,我们只需要继承其中一个HttpServlet(F4或者ctrl鼠标点击查看源码),重写dopost和doget类(ctrl+o),

helloServlet_第6张图片

第四步编写servlet的映射,因为(url-pattern后面跟的名字前面一定要加"/"!!!!!!!!)

helloServlet_第7张图片

第六步配置Tomcat

helloServlet_第8张图片

helloServlet_第9张图片

如果没有.war文件,请打开右侧的maven,双击package然后在target目录下找

helloServlet_第10张图片

你可能感兴趣的:(helloServlet)