点燃 websession 集群 WebSessionEntity 到 HttpSession

Ignite websession cluster WebSessionEntity to HttpSession

我需要请求 ignite 缓存来获取 HttpSession,我可以获取 WebSessionEntity 但它不是很有用。

我可以从 WebSessionFilter class 中提取代码,但我必须保持它与 ignite 版本保持联系。

可以查询属性并单独解组它们,但不能拥有真正的 HttpSession。

IgniteCache<String, WebSessionEntity> cache = ignite.cache("session");

有没有办法将 WebSessionEntity 解组为 HttpSession?

可以查询WebSessionEntity的属性(attributes()方法),但不能在WebSessionFilter.

之外将其转为HttpSession

为什么需要?