描画テーブルは JSF を意味します。テーブルにはヘッダーのみが含まれます。レンダリング後も空のタグ TBODY です
JSF:
<h:dataTable>
<h:column>
<f:facet name="header">
<h:outputText value="col1" />
</f:facet>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="col2" />
</f:facet>
</h:column>
</h:dataTable>
html結果:
<table>
<thead>
<tr>
<th>
<span>col1</span>
</th>
<th>
<span>col2</span>
</th>
</tr>
</thead>
<tbody> </tbody>
</table>
空の TBODY 要素を作成しない JSF コードの記述方法