gpt4 book ai didi

java - 如何检索 tomcat 实例中的 Activity session ?

转载 作者:行者123 更新时间:2023-11-28 23:54:04 25 4
gpt4 key购买 nike

我被指定实现一个安全要求来模仿“像信使一样”的身份验证,例如:如果一个用户第一次登录,然后另一个用户试图用相同的用户名登录,这个新用户将被提示“踢“之前登录的用户和系统应该使第一个用户的网络 session 无效,网络应用程序在 tomcat 6 上运行,我正在查看 HTTPSessionContext但它现在已被弃用,是否有替代方案或者我应该自己使用 HTTPSessionListener 实现一些东西? ?

最佳答案

HTTPSessionListener 可能无法工作,因为您无权访问那里的用户主体。我使用过滤器做了类似的事情(没有使 session 失效)。这是我对一些可能适用于您的情况的代码所做的精简版本(尚未测试):

public class ApplicationFilter implements Filter {

private Map<String, HttpSession> sessions = new HashMap<String, HttpSession>();

public void init(FilterConfig config) throws ServletException {
}

public void destroy() {
}

public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain chain)
throws IOException, ServletException {

HttpServletRequest request = (HttpServletRequest) servletRequest;
HttpServletResponse response = (HttpServletResponse) servletResponse;
Principal principal = request.getUserPrincipal();
HttpSession session = request.getSession();

if (principal != null && session.getAttribute("THE_PRINCIPAL") == null) {

// update the current session
session.setAttribute("THE_PRINCIPAL", session);

// get the username from the principal
// (assumes you using container based authentication)
String username = principal.getName();

// invalidate previous session if it exists
HttpSession s = sessions.get(username);
if (s != null)
s.invalidate();

// register this session as the one for the user
sessions.put(username, session);

}

chain.doFilter(servletRequest, servletResponse);

}

}

关于java - 如何检索 tomcat 实例中的 Activity session ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3515209/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com