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.
ユーザーがログインしているかどうかを確認し、HTML コードを含む文字列を返すメソッドを持つ Bean を取得しました。この文字列が返された後、Web ページでこの文字列をレンダリングする方法はありますか?
もちろん。マネージド Bean で:
public String checkLogin() { return "<h2><b>User was not logged in.</b></h2>"; }
そしてあなたのxhtmlファイルで:
<h:outputText escape="false" value="#{bean.checkLogin()}" />