代码之家  ›  专栏  ›  技术社区  ›  usertest

如何在jsf中添加头[duplicate]

  •  0
  • usertest  · 技术社区  · 6 年前

    PF 3.5(4.0)、OmniFaces 1.6.3、Mojara 2.1.21

    是否可以控制将在jsf xhtml页面内发送的http头?我的意思是:

    XHTML :

    <html xmlns:http="a cool name space">
    
      <h:head>
        <http:headers header="Cache-Control" value="no-cache, no-store, must-revalidate" />
      </h:head>
      <h:body> .... </h:body>
    </html>
    
    0 回复  |  直到 8 年前
        1
  •  6
  •   Community CDub    7 年前

    你的意思是不指示浏览器缓存它?只需使用筛选器并将所需内容添加到响应头:

    HttpServletResponse res = (HttpServletResponse) response;
    if (!req.getRequestURI().startsWith(
            req.getContextPath() + ResourceHandler.RESOURCE_IDENTIFIER)) { // Skip JSF resources //
                                                                            // (CSS/JS/Images/etc)
        res.setHeader("Cache-Control", "no-cache, no-store, must-revalidate"); // HTTP 1.1.
        res.setHeader("Pragma", "no-cache"); // HTTP 1.0.
        res.setDateHeader("Expires", 0); // Proxies.
    }
    

    参见:

        2
  •  1
  •   tainguyentt    8 年前

    我找到了一个简单的解决方案,将下面的一行添加到xhtml页面:

      <f:event type="preRenderView"
        listener="#{facesContext.externalContext.response.setHeader('Cache-Control', 'no-cache, no-store')}" />