zoukankan      html  css  js  c++  java
  • Servlet Web

    1.ServletContext    HttpServlet   Session    Cookie     ServletConfig    HttpServletRequest HttpServletResponse    ServletRequest  ServletResponse   

           (1) ServletContext :   getServletContext().setAttribute()   ..   addFilter   addListner   addServlet    ...getContextPath()

           (2) HttpServlet:   

          public class DemoServlet  implements  HttpServlet{

                 doGet(httpservletrequest, httpservletresponse){};

                doPost(httpservletrequest,httpservletresponse){};

            }

      (3)Session: 创建  使用  保存   销毁

        request.getSession().setAttribute(key,value)

        request.getSession().invalidate();

        request.getSession().removeAttribute();

        setMaxInactiveInterval(int second);

      (4) Cookie: 创建  使用  发送  保存

                         request.getCookies()读取Cookies 

           Cookie  cookie=new Cookie(name,value);

            response.addCookie(cookie );

      (5)  request  response  请求header   body

                         request.getContentType();

                         request.setCharacterEncoding("utf-8")

                         request.getParameter(name)

          response.setContentType()

          response.setCharacterEncoding()

          request.getRequestDispatch("xxx.html").forward(request,response) 请求页面跳转,地址不变,传递数据?

          response.sendRedirect(“xxx.html”) 响应跳转页面

      附:  Propertites  prop=new Properties(); 

          request.getContextServlet().getResourceAsStream()    getResourceRealPath()

          prop.load(inputStream)

          prop.get(name);

          response.getWriter()

          response.getOutputStream()

          下载文件请求头:setHeader("Content-Disposition", "attachment;fileName)

    2.Filter:

         public class DemoFilter  implements Filter{

                    init(){.....  }

                    doFilter(req,res,FilterChain){。。。。。};

                    destroy(){....};

                      }

    3.Interceptor:   

          public class  DemoInterceptor  implements HandlerInterceptor{

              

            }

    4.Listener :   

    • 对象自身的创建和销毁的监听器
    • 对象中属性的创建和消除监听器
    • session中的某个对象的状态变化监听器

        • 对象自身的创建和销毁的监听器
        • 对象中属性的创建和消除监听器
        • session中的某个对象的状态变化监听器
    • ServletContext对象监听器                   
    • HttpSession对象监听器
    • ServletRequest对象监听

    5. Java1.图片创建 2.创建图片笔刷   3.用笔刷绘制内容    4.ImageIO 

    6.JDBC :

          1.mysql.url     username  password   

         2.载入驱动jar driver   

        3.连接mysql connection  jdbcManager.getConnection()   

         4.preparedStament(sql)===>ResultSet

    7.

  • 相关阅读:
    js基础 数组reduce
    js基础 数组every some
    js基础 数组forEach
    js基础 数组排序
    js基础 数组findIndex
    nodejs+koa2微信app支付,小程序支付
    Iview-datePicker获取选中的日期,如果没有选,提示错误,选了,错误隐藏
    mongoose+koa2 按照_id更新多条数据,删除数组中的字段,然后添加新的字段,$pull和$or结合使用
    json数组去除重复的值
    mongoose根据_id更新,且如果数组中没有元素就添加
  • 原文地址:https://www.cnblogs.com/chencn/p/12294638.html
Copyright © 2011-2022 走看看