Servlet-通过继承HttpServlet类实现Servlet程序

Servlet-通过继承HttpServlet类实现Servlet程序

新建HelloServlet.java类
package com.java.servlet;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

public class HelloServlet2 extends HttpServlet {

    /**
     * doGet()在get请求的时候调用
     * @param req
     * @param resp
     * @throws ServletException
     * @throws IOException
     */
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        System.out.println("继承HttpServle类实现 doget方法");

    }
    /**
     * doPost()在post请求的时候调用
     * @param req
     * @param resp
     * @throws ServletException
     * @throws IOException
     */
    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        System.out.println("继承HttpServle类实现 dopost方法");
    }
}

在web目录下新建test.html文件
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<form action="http://localhost:8080/06_servlet_war_exploded/hello2" method="post">
    <input type="submit">
</form>

</body>
</html>
配置web.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
         version="4.0">

    <!--servlet标签给Tomcat配置Servlet程序-->
   
    <!--servlet-mapping给Servlet程序配置访问地址-->

    <!--servlet-name:告诉服务器当前配置的地址给哪个Servlet程序使用-->
    
    <!--url-pattern标签配置访问地址<br/>
  
    <servlet>
        <servlet-name>HelloServlet2</servlet-name>
        <servlet-class>com.java.servlet.HelloServlet2</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>HelloServlet2</servlet-name>
        <url-pattern>/helloservice</url-pattern>
    </servlet-mapping>
</web-app>
通过ip地址访问
http://localhost:8080/06_servlet_war_exploded/test.html

/helloservice为你在web.xml文件中配置的访问目录。

<url-pattern>/helloservice</url-pattern>

在打开的页面中点击提交,切换到IDEA的Server控制台。

可以看到输出:继承HttpServle类实现 dopost方法

更换请求方法

在test.html中更改post为get即可更换访问类型。

上一篇:Servlet


下一篇:过滤器