我想在基于xml-config的项目中使用Spring Session
,但在同一浏览器窗口中不支持多个会话(用户登录)。
可以禁用吗?如果是,怎么样?
答案 0 :(得分:2)
根据CookieHttpSessionStrategy#setSessionAliasParamName
javadoc:
设置用于指定的HTTP参数的名称 会话别名。如果值为null,则只有一个会话 支持每个浏览器。
因此,使用Spring XML配置,转换为:
<bean class="org.springframework.session.web.http.CookieHttpSessionStrategy">
<property name="sessionAliasParamName">
<null/>
</property>
</bean>