我想使用 apache tomcat 7 获取服务器中工作会话的名称和 ID。
我试过这个:(谷歌搜索后)
// Get my custom application-scoped attribute
ApplicationData applicationData = getApplicationData();
// Get the set of all SessionData objects and add myself to it
Set<SessionData> activeSessions = applicationData.getActiveSessions();
if (!activeSessions.contains(this)) {
activeSessions.add(this);
}
但似乎这ApplicationData
不是一个现有的课程。
任何帮助,将不胜感激。