如何从BayeuxServer.SessionListener内部访问ServletContext?

时间:2017-02-03 12:26:16

标签: servlets cometd

是否可以从BayeuxServer.SessionListener回调函数中访问ServletContext?我有一个对象,我一直作为ServletContext的属性。我可以把它变成单身,但我想知道。

1 个答案:

答案 0 :(得分:0)

您无法直接访问ServletContext,但您可以通过以下方式访问其属性:

BayeuxServer bayeuxServer = ...;
BayeuxContext bayeuxContext = bayeuxServer.getContext();
Object attributeValue = bayeuxContext.getContextAttribute(attributeName);