首页 相关文章 JSP内部对象详解

JSP内部对象详解

  1.1 application
  *在jsp中获得application对象
  如:getServletContext().setAttribute("counter",new mycount.Counter());
  如:jsp:useBean scope="application" id="counter" class="mycounter.Counter"/
  *在jsp中处理On Application Start和On Session Start事件的方法
  使用HttpSessionBindingListener类.
  添加session:
  session.putValue("bingdings.listener",new MyListener(getServletContext());
  定义MyListener类:
  import javax.servlet.http.*;
  import javax.servlet.*;
  public class MyListener implements HttpSessionBindingListener{
  Servl...[ 查看全文 ]

2016-02-19 标签:

JSP内部对象详解的相关文章

手机页面
收藏网站 回到头部