java中 会话的定义_如何在java中实现自定义http会话?

其两种方式。

将原始HttpSession“包装”到您自己的HttpServletRequestWrapper实施中。

我在很短的时间之前对Hazelcast和Spring Session进行了分布式会话聚类。

Here解释得很好。

首先,实现自己的HttpServletRequestWrapper

public class SessionRepositoryRequestWrapper extends HttpServletRequestWrapper {

public SessionRepositoryRequestWrapper(HttpServletRequest original) {

super(original);

}

public HttpSession getSession() {

return getSession(true);

}

public HttpSession getSession(boolean createNew) {

// create an HttpSession implementation from Spring Session

}

// ... other methods delegate to the original HttpServletRequest ...

}

,之后从自己的筛选,包装了原HttpSession,然后把它放在你的Servlet容器提供的FilterChain内。

public class SessionRepositoryFilter implements Filter {

public doFilter(ServletRequest request, ServletResponse response, FilterChain chain) {

HttpServletRequest httpRequest = (HttpServletRequest) request;

SessionRepositoryRequestWrapper customRequest =

new SessionRepositoryRequestWrapper(httpRequest);

chain.doFilter(customRequest, response, chain);

}

// ...

}

最后,在web.xml中的开头设置你的过滤器,以确保它在任何其他之前执行。

实现它的第二种方式是向您的Servlet容器提供您的自定义SessionManager。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值