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

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

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

自己建立一个Servlet并且在web.xml中进行配置_第1张图片

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

项目目录:

自己建立一个Servlet并且在web.xml中进行配置_第2张图片




在web.xml中配置servlet文件



  Servlet
  
 
       MySecondServlet
       com.example.test.controller.MySecondServlet
       
 

  
    
  
 
       MySecondServlet
       /servlet/MySecondServlet
       
 

  
  
  
 
    index.html
    index.htm
    index.jsp
    default.html
    default.htm
    default.jsp
 


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);
}
}






你可能感兴趣的:(java)