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。logout.htmlユーザーをページにリダイレクトするためにクリックしたときに使用される単純な http リンクを作成したいと考えています。ページのリダイレクトに推奨できる JSF タグはどれですか?
logout.html
を使用するだけ<h:outputLink>です。
<h:outputLink>
<h:outputLink value="logout.html">Logout</h:outputLink>
JSF ではプレーンな HTML も使用できることをご存知ですか?
<a href="logout.html">Logout</a>