是否可以从BayeuxServer.SessionListener回调函数中访问ServletContext?我有一个对象,我一直作为ServletContext的属性。我可以把它变成单身,但我想知道。
答案 0 :(得分:0)
您无法直接访问ServletContext
,但您可以通过以下方式访问其属性:
BayeuxServer bayeuxServer = ...;
BayeuxContext bayeuxContext = bayeuxServer.getContext();
Object attributeValue = bayeuxContext.getContextAttribute(attributeName);