自己建立一个Servlet并且在web.xml中进行配置

2022-06-21 00:00:00 web 配置 建立一个

(1)自己创建一个servlet文件,名称可以写成MySecondServlet。

我们可以在项目中创建一个class类,类名称为MySecondServlet,一定在superclass中写成如下:

《自己建立一个Servlet并且在web.xml中进行配置》

这样我们就创建了一个自己的servlet,而不是在eclipse中直接创建servlet文件生成的,创建后里面没有代码,所以需要自己去写,可以用alt+/快捷键重写dopost和doget方法。

项目目录:

《自己建立一个Servlet并且在web.xml中进行配置》

在web.xml中配置servlet文件

<?xml version=”1.0″ encoding=”UTF-8″?>
<web-app xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xmlns=”http://java.sun.com/xml/ns/javaee” xsi:schemaLocation=”http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd” id=”WebApp_ID” version=”3.0″>
  <display-name>Servlet</display-name>
  
  <servlet>
       <servlet-name>MySecondServlet</servlet-name>
       <servlet-class>com.example.test.controller.MySecondServlet</servlet-class>
       
  </servlet>
  
    
  
  <servlet-mapping>
       <servlet-name>MySecondServlet</servlet-name>
       <url-pattern>/servlet/MySecondServlet</url-pattern>
       
  </servlet-mapping>
  
  
  
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
</web-app>

servlet中的代码:

import java.io.IOException;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class MySecondServlet extends HttpServlet {
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
// TODO Auto-generated method stub
super.doPost(req, resp);
}
                 

@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
// TODO Auto-generated method stub
super.doGet(req, resp);
}
}

    原文作者:安静点DGC
    原文地址: https://blog.csdn.net/qq_26925297/article/details/79946934
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。

相关文章