jsp、Servlet、Struts1.X 中使用application对象

在jsp中使用application

  1. <%
  2. applicaiton.setAttribute(”userId”, “testUser”);
  3. %>

 

在servlet中使用application

  1. ServletContext application = getServletConfig().getServletContext();
  2. //或者
  3. ServletContext application=httpServletRequest.getSession().getServletContext();

在Struts1.X Action 类中中使用application

 

  1. ServletContext application = getServlet().getServletConfig().getServletContext();

你可能感兴趣的:(jsp,servlet,struts,application,action)