在 Grails 操作中,我可以使用session访问 HTTPSession 。
是否也可以获得所有活动会话的列表?
这是您在评论中的问题的答案:
我能够让它与 2.2.4 一起工作,没有任何问题。确保您阅读此博客以了解与 grails 2+ 的兼容性。
要排除 jquery 版本,请使用:
compile (":app-info:1.0.2" ){
excludes 'jquery'
}
这样你就告诉 Grails 不要使用插件的 jquery 而是你的应用程序。
您可以使用应用程序信息插件的服务getSessionsInfo()
方法。ScopesInfoService
首先安装插件(在 BuildConfig 中)
compile ":app-info:1.0.2"{
excludes 'jquery'
}
然后在 Config 中输入
grails.plugins.appinfo.useContextListener = true
最后注入服务并使用它的getSessionsInfo()
方法
def scopesInfoService
...
scopesInfoService.getSessionsInfo()
获取所有活动会话的列表。