码迷,mamicode.com
首页 > 编程语言 > 详细

java 之servlet

时间:2018-03-31 00:42:38      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:bubuko   doget   继承   servlet   cat   body   容器   重写   throw   

servlet基础

  1. jsp的前身就是servlet

  2. tomecat容器分为四个等级

技术分享图片

  1. servelt 程序
    1. 继承httpServlet 实现了http协议的servelt
    2. 重写doGet() doPost() 方法


    public class HelloServelt extends HttpServelet {
        @Override
        protected void doGet(HttpServletRquest req, HttpServletResponse res)
            throws ServletException, IOException {
            
        }

    }

java 之servlet

标签:bubuko   doget   继承   servlet   cat   body   容器   重写   throw   

原文地址:https://www.cnblogs.com/he-zhi/p/8679197.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!