Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了用于客户端身份验证的 JSF 登录页面。我创建了在用户打开页面时破坏用户会话的过滤器logout.html。我想创建简单的 http 链接,当单击它以将用户重定向到logout.html页面时将使用该链接。您可以推荐哪些 JSF 标记用于页面重定向?
logout.html
只需使用<h:outputLink>.
<h:outputLink>
<h:outputLink value="logout.html">Logout</h:outputLink>
你知道你甚至可以在 JSF 中使用纯 HTML 吗?
<a href="logout.html">Logout</a>