如何使用ServletContext共享数据?
时间: 2023-05-11 13:02:14 浏览: 103
servlet中的ServletContext的使用
可以使用ServletContext的setAttribute()方法设置共享数据,使用getAttribute()方法获取共享数据。例如:
//设置共享数据
ServletContext context = getServletContext();
context.setAttribute("data", "共享数据");
//获取共享数据
String data = (String) context.getAttribute("data");
注意:共享数据的作用域是整个Web应用程序,而不是单个Servlet或JSP页面。
阅读全文