Я пытаюсь использовать HttpSessionListener, чтобы проверить наличие cookie и получить IP-адрес запроса.
Однако у меня нет доступа к HttpServletRequest в слушателе, чтобы перейти к STKUserCookie или получитьIP.
public STKUserCookie(HttpServletRequest request)
public void sessionCreated(HttpSessionEvent se) {
HttpSession httpSes = se.getSession();
if ( se.getSession().getAttribute("STKUserSession") == null) {
STKUserCookie userCookie = new STKUserCookie(request); <------- ERROR on this line "request" not available
String userBadge = userCookie.getUserID();
STKUserDAO userDAO = new STKUserDAO();
STKUser user = userDAO.getUser(userBadge);
if (user != null) {
user.setIpAddress(se.getRemoteAddr()); <------- ERROR on this line "getRemoteAddr" not a method of se
userDAO.updateLogin(user);
httpSes.setMaxInactiveInterval(36000); //set to 10 hours
httpSes.setAttribute("STKUserSession", user);
}
}
}
Выше был скриптлет, который я включал во все мои страницы JSP, и я пытаюсь реорганизовать его в слушатель, а нефильтр, так как я хочу, чтобы он вызывался только один раз за сеанс, чтобы уменьшить накладные расходы.Или я не должен беспокоиться о накладных расходах и вставлять метод в фильтр ??