作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
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 消息,而是在消失之前在两个完整请求的持续时间内显示一条消息。这是为什么?
最佳答案
首先确保仅在 session 中设置该属性。
还要确保您不渲染 session 中设置的内容,而仅渲染请求中的内容。你如何渲染它?使用 JSP EL?然后,您必须显式使用 ${requestScope.flashScopeAttribute}
,因为 ${flashScopeAttribute}
也会搜索 sessionScope。
关于java - 为什么我的 FlashMapFilter 在两个请求上显示,即使它扩展了 OncePerRequestFilter?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8718823/
public class FlashMapFilter extends OncePerRequestFilter { @Override @SuppressWarnings("unch
我是一名优秀的程序员,十分优秀!