Jsf-remove-tag
提供:Dev Guides
JSF-ui:removeタグ
ui:removeタグは、JSF固有のコードがクライアント側でレンダリングされるのを防ぐために使用されます。 特に、コメントアウトされたコードがクライアント側でレンダリングされるのを防ぐために使用されます。
HTMLコメントを使用してコメントアウトされたJSFタグ
レンダリングされた出力
removeタグを使用すると、レンダリングされた出力に次の変更が表示されます。
タグの削除を使用してコメント化されたJSFタグ
レンダリングされた出力
応用例
テストJSFアプリケーションを作成して、JSFのテンプレートタグをテストしましょう。
Step | Description |
---|---|
1 | Create a project with a name helloworld under a package com.finddevguides.test as explained in the JSF - First Application chapter. |
2 | Modify home.xhtml as explained below. Keep rest of the files unchanged. |
3 | Compile and run the application to make sure business logic is working as per the requirements. |
4 | Finally, build the application in the form of war file and deploy it in Apache Tomcat Webserver. |
5 | Launch your web application using appropriate URL as explained below in the last step. |
home.xhtml
すべての変更を完了したら、JSF-最初のアプリケーションの章で行ったようにアプリケーションをコンパイルして実行します。 アプリケーションに問題がなければ、空のページが表示されます。
ページのソースを表示すると、次のHTMLテキストが表示されます。