JSP - Servlet 获取 application 相关问题
是这样,我写了个InitServlet,在里面 ServletContext app=getServletContext(); (这里加不加this.或super.都一样,我看分析说获取的都是这个对象),然后加属性 app.setAttribute("message","ssss");配置web.xml时为IntiServlet设置了<load-on-startup>1</load-on-startup>
理论上来说,在运行tomcat服务器后,这个“ssss”应该已经存到application了,但是我启动tomcat后在index.jsp里用String s = (String)application.getAttribute("message");, <%=s%>的结果为none,之后封装过其他的对象,结果也是无法提取,到底是为什么?application不是服务器端的全局对象吗。 顺便说一嘴,我在jsp页面内设置application是可以当场提取的,但是换了别的页面,设置的属性依然无效。 能发一下代码么 创建全局对象的语法:ServletContext app=request.getServletContext();
当然也可能你访问顺序不对,先去/1这个网站,application才会存储这个值,接着回到index.jsp页面就好了
页:
[1]