tomcat配置问题,最大并发会话连接数
这里面说的
maxActiveSession:活动状态Session的最大数,为-1时则不限制,否则Session Manager将会把超出的Session对象转移到Session Store中。
什么意思?
TOMCAT可以配置多少人访问吗?
比如我设置3
就3个浏览器用户可以登录
第四个就登录不了了
------解决方案--------------------我在源码里找到了这样的代码。
看起来是不能的。
if ((maxActiveSessions >= 0) &&
(getActiveSessions() >= maxActiveSessions)) {
rejectedSessions++;
throw new TooManyActiveSessionsException(
sm.getString("managerBase.createSession.ise"),
maxActiveSessions);
}