我有一个带有值列表的下拉列表和一个No Selection选项。喜欢
<h:selectOneMenu id="car" value="#{bean.carId}" >
<f:selectItem itemLabel="No Selection "
itemValue="#{null}" noSelectionOption="true"/>
<f:selectItems value="#{bean.carList}"
var="cList" itemValue="#{cList.carId}"
itemLabel="#{cList.carName}"/>
</h:selectOneMenu>
当我选择No Selection时,null应保存在bean中。这在Tomcat上工作正常但是当我在Jboss EAP 6.0.1上运行相同的代码时,它将值转换为&#39; 0&#39; 。 我该如何解决这个问题?