如何在Servlet中创建/访问scopend bean?

我知道我可以将bean放入请求和会话中。如何创建应用程序范围的bean?我应该使用servlet上下文吗?如何在Servlet中创建/访问scopend bean?

回答:

在servlet的,你可以使用

getServletContext()方法的setAttribute( “名”, “值”)

和JSP

的jsp:useBean的类=” foo.Counter“scope =”application“

以上是 如何在Servlet中创建/访问scopend bean? 的全部内容, 来源链接: utcz.com/qa/259522.html

回到顶部