春季-是否可以获取所有活动会话的列表?
作者:互联网
在执行Grails操作时,我可以访问带有会话的HTTPSession.
是否还可以获得所有活动会话的列表?
解决方法:
您可以使用Application Info插件的ScopesInfoService服务的getSessionsInfo()方法.
首先安装插件(在BuildConfig中)
compile ":app-info:1.0.2"{
excludes 'jquery'
}
然后在Config中输入
grails.plugins.appinfo.useContextListener = true
最终注入服务并使用其getSessionsInfo()方法
def scopesInfoService
...
scopesInfoService.getSessionsInfo()
获取所有活动会话的列表.
标签:grails-2-0,grails,servlets,spring 来源: https://codeday.me/bug/20191030/1968783.html