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