2019-06-18

1.后台获取conText

    ServletContext  sc=this.getServletContext();

     sc.setAttribute("name","");

2.conText赋值

      对象.conbuilt    

3.Cookie

    Cookie cookie名 = new Cookie("name","value");

    后台获取cookie

            request.getCookies();

    后台设置有效时间:

             setMaxeage(秒);

     

       session最大有效时间

4.JSP内置

    userBeen:引入内置对象

    javaBeen:封装数据和业务

    

你可能感兴趣的:(2019-06-18)