一、前提
1、在上一个案例中,我们已经用三种方式实现了servlet,但都是需要在.xml文件中配置servlet,现在介绍一种方法,是不需要在.xml中配置的。
2、为了避免冲突,要把之前在.xml文件配置的servlet删掉;
3、还是和之前一样创建一个类MyServletTest4,再继承HttpServlet:extends HttpServlet;
在方法{}内任意位置,鼠标右键Gernerate重写方法;
4、把方法内的super语句修改一下:
doGet方法内把super语句改为:this.doPost(req, resp);
doPost方法内,写输出语句,现在只是测试,能不能正常使用,后续会加上功能语句;
MyServletTest4.java:
package com.qingruan.servlet; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; @WebServlet(value="/myServlet4") public class MyServletTest4 extends HttpServlet { @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { this.doPost(req, resp); } @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { System.out.println("myServlet4...doPost"); } }
二、WEB-INF目录下,创建index.jsp,验证是否正常连接
index3.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'index.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
</head>
<body>
<%--myServlet1可改为我们在.xml文件中设置的myServlet2、myServlet3--%>
<form action="myServlet1" method="post">
username:<input name="username"/><br/>
password:<input name="password"/><br/>
sex:<input type="radio" name="sex" value="男" checked="true"/>男
<input type="radio" name="sex" value="女"/>女<br/>
hobby:<input type="checkbox" name="hobbys" value="song"/>song
<input type="checkbox" name="hobbys" value="dance"/>dance
<input type="checkbox" name="hobbys" value="draw"/>draw<br/>
job:<select name="job">
<option value="java开发工程师">java开发工程师</option>
<option value="前端工程师">前端工程师</option>
<option value="运维工程师">运维工程师</option>
</select>
<input type="submit" value="提交"/>
</form>
</body>
</html>
三、运行结果
运行要选择在tomcat下,既idea页面右上角输入框选择tomcat,并在Document下fix本项目,点击OK;
运行完成后,网页会自动跳出来,效果如下:
点击提交按钮,页面会进行跳转,后续会获取用户的账号密码,与数据库的用户表信息进行比对,如果输入正确,就可以跳转到另一个页面;如果账号密码错误,则不能跳转。
这就是servlet的应用场景。