我有一个jsf表单来添加任务,这些任务被分配给从selectOneMenu中选择的特定工作人员,但当我提交时,它会抛出这个错误
summary=(Conversion Error setting value 'com.jpa.entities.PERSONAL@5f9f87f' for 'null Converter'.), detail=(Conversion Error setting value 'com.jpa.entities.PERSONAL@5f9f87f' for 'null Converter'.)]
我需要构建一个转换器吗?还是我错误地使用了select?我是JSF和JPA的新手,这让我抓狂。
XHTML:
<b:form>
<div class="row">
<div class="col-md-4">
<h:outputLabel value="Nombre" />
<h:inputText styleClass="form-control"
value="#{tareasController.tar.NOMBRE}">
</h:inputText>
</div>
<div class="col-md-4">
<h:outputLabel value="Fecha de asignacion" />
<b:datepicker value="#{tareasController.tar.FECHA}"></b:datepicker>
</div>
<div class="col-md-4">
<h:outputLabel value="Hora limite" />
<b:dateTimePicker value="#{tareasController.tar.HORA_LIMITE}"></b:dateTimePicker>
</div>
</div>
<div class="row">
<div class="col-md-4">
<h:outputLabel value="Personal" />
<h:selectOneMenu value="#{tareasController.tar.PERSONAL}"
styleClass="form-control">
<f:selectItem itemLabel="Select" itemValue="#{null}" />
<f:selectItems value="#{tareasController.personal}" var="per"
itemLabel="#{per.NOMBRE}" itemValue="#{per}"></f:selectItems>
</h:selectOneMenu>
</div>
</div>
<div class="row">
<div class="col-md-6"
style="padding-top: 20px; padding-bottom: 20px;">
<h:outputLabel></h:outputLabel>
<h:commandButton class="btn btn-info" value="Guardar"
action="#{tareasController.addTarea(tar)}"></h:commandButton>
服务:
public void addTarea(TAREA tar) {
EntityManagerFactory emf = Persistence.createEntityManagerFactory("WebApp");
EntityManager em = emf.createEntityManager();
em.getTransaction().begin();
em.persist(tar);
em.getTransaction().commit();
em.close();
}
谢谢你的帮助。
如果你想设置整个实体,那么你必须创建一个这样的转换器:
<p:selectManyMenu value="#{bean.selectedDict}" converter="omnifaces.SelectItemsConverter">
<f:selectItems value="#{bean.dicts}" var="item" itemLabel="#{item.code} #{item.name}" itemValue="#{item}"/>
</p:selectManyMenu>
更多详细信息:http://showcase.omnifaces.org/converters/SelectItemsConverter