jpa jsf使用已存在的相关实体持久化实体

时间:2018-11-20 01:56:21

标签: java jsf java-ee xhtml

我有一个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'.)]

我是否需要构建转换器或我对选择的使用有误? 我是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();
}

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

如果您希望设置整个实体,则必须创建如下所示的Converter:

<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