The body component is created for you when you create a new page. You can see this component in the Navigator window when you select a page in the Visual Designer in Design mode and open the html node for the page.
On the rendered HTML page, this component produces a <body>
tag, which contains all the content for the page. In a Visual Web JSF Application page, the first tag inside the body is the <form>
tag, which is produced by the Form component automatically added to the page by the IDE when you create the page.
The JSP representation of this tag is bound to the current page. For example, if the page is named Page1.jsp
and the server is a Java EE 5 server, the default JSP code for the body component is as follows:
<webuijsf:body binding="#{Page1.body1}" id="body1" style="-rave-layout: grid">
. . .
</webuijsf:body>