public class FlashMapFilter extends OncePerRequestFilter {
@Override
@SuppressWarnings("unchecked")
protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain)
throws ServletException, IOException {
HttpSession session = request.getSession(false);
if (session != null) {
Map<String, ?> flash = (Map<String, ?>) session.getAttribute(FlashMap.FLASH_MAP_ATTRIBUTE);
if (flash != null) {
for (Map.Entry<String, ?> entry : flash.entrySet()) {
Object currentValue = request.getAttribute(entry.getKey());
if (currentValue == null) {
request.setAttribute(entry.getKey(), entry.getValue());
}
}
session.removeAttribute(FlashMap.FLASH_MAP_ATTRIBUTE);
}
}
filterChain.doFilter(request, response);
}
}
Вместо того, чтобы отображать Flash-сообщение один раз для каждого запроса, отображается сообщение в течение двух полных запросов перед исчезновением. Почему это так?