如何手动开发一个servlet?

1)编写一个普通的java类,继承HttpServlet类,覆盖doGet方法(
注意: 到tomcat的lib目录下拷贝servlet-api.jar导入到你的项目中

public class HelloServlet extends HttpServlet{
    
    //覆盖doGet
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp)
            throws ServletException, IOException {
        resp.setContentType("text/html;charset=utf-8");
        //向浏览器输出内容
        resp.getWriter().write("当前时间为:"+new Date());
    }
    
}


2)把servlet交给tomcat服务器运行!!!!!!

2.1 把servlet对应的class文件拷贝到tomcat的某个项目(bbs)的WEB-INF/classes目录下

2.2 在bbs项目的WEB-INF/web.xml文件配置servlet



 
    
    
        
        HelloServlet
        
        gz.itcast.b_servlet.HelloServlet
    

    
        
        HelloServlet
        
        /hello
    




3.通过URl访问这个servlet

http://localhost:8080/bbs/hello

你可能感兴趣的:(如何手动开发一个servlet?)