h:commandButton の使い方

をつかってみる。

htmlで<button>を使用したいときに使うタグ

<html xmlns="http://www.w3.org/1999/xhtml"
  xmlns:f="http://java.sun.com/jsf/core"
 xmlns:h="http://java.sun.com/jsf/html">
<h:head>
 <title>h:commandButton</title>
</h:head>
<h:body>
<h:commandButton value="button"/>
</h:body>
</html>

↓出力結果

<html xmlns="http://www.w3.org/1999/xhtml"><head> 
 <title>h:commandButton</title></head><body><input type="submit" name="j_idt6" value="button" /></body> 
</html>
属性

いろいろ属性を設定することができますが、
あとで。