-2

我希望我从网站的控制面板提交的链接出现在 jsp 页面“ foo.jsp ”上。直到知道我正在绑定提交的链接,作为会话对象的一个​​属性,当我意识到由 servlet(处理链接)创建的会话以该特定计算机为中心时。

除了使用数据库方法之外,还有什么方法可以实现这一点。

我一直在做什么直到知道:

Post Request from the cpanel -----> Servlet handles the link and puts that link as a session attribute
                                              |
                                              |
                                             \ /
     foo.jsp tries to retrieve those links by calling session.getAttribute(....)
4

1 回答 1

1

将它们放在应用程序上下文 ( getServletContext()) 中而不是会话中。

您可能希望同步对应用上下文链接列表的访问。

于 2012-08-22T10:53:38.813 回答