zoukankan      html  css  js  c++  java
  • servlet三种实现方式之二继承GenericServlet开发

    servlet有三种实现方式:

    1.实现servlet接口

    2.继承GenericServlet

    3.通过继承HttpServlet开发servlet

    第二种示例代码如下(已去掉包名):

     1 //这是第二种开发servlet的方法(继承GenericServlet开发)
     2 
     3 import javax.servlet.*;
     4 import java.io.*;
     5 public class hellogen extends GenericServlet {
     6 
     7     
     8     //重写service方法即可
     9     public void service(ServletRequest req, ServletResponse res)
    10             throws ServletException, IOException {
    11         
    12         try{
    13             PrintWriter pw=res.getWriter();
    14             pw.println("hello,world!generic");
    15         }catch(Exception ex){
    16             ex.printStackTrace();
    17         }
    18     }
    19 
    20 }

    这种方式只需重写service方式即可。

  • 相关阅读:
    ATM
    Python不同目录间模块调用
    Python跨目录调程序
    Python软件目录结构规范
    进程的创建-multiprocessing
    进程
    多任务版udp聊天器
    死锁
    互斥锁
    同步
  • 原文地址:https://www.cnblogs.com/adaonling/p/3536406.html
Copyright © 2011-2022 走看看