<h:selectOneRadio id="radio1" value="#{testBean.value}">
<f:selectItem itemValue="High School" itemLabel="High School" />
<f:selectItem itemValue="Bachelor's" itemLabel="Bachelor's"/>
<f:selectItem itemValue="Master's" itemLabel="Master's"/>
<f:selectItem itemValue="Doctorate" itemLabel="Doctorate" />
</h:selectOneRadio>
答案 0 :(得分:9)
使用所需的默认值在您的辅助bean中设置value
。例如,如果您希望“高中”作为默认值:
value = "High School";
这可以在构造函数或@PostConstruct方法中完成,具体取决于辅助bean的范围。