0

我正在开发一个 JPA,jsf2.0 Hibernate 项目。它是通过您可以在此处看到的 primefaces 日历对用户操作的管理。

我设法获取用户的操作并将它们显示在日历中,但是当我想添加一个新操作时,它似乎可以工作:我没有错误消息,但实际上该操作没有添加到数据库中。似乎persist方法没有完成它的工作,它没有返回任何错误消息,所以我不知道该怎么做才能看到原因。

我把这 2 个动作的 2 个函数放在这里(显示和添加):

添加动作的方法(不起作用)

public void creerAction(Action action){


     Date date = action.getDateAction();
     action.setDateAction(date);



     EntityManagerFactory emf = null;


        try{
        emf = Persistence.createEntityManagerFactory("GA2010-ejbPU-dev");
        em = emf.createEntityManager();


         em.persist(action);



        FacesMessage message = new FacesMessage("Action  " + action.getTexteAction()+ " ajouté avec succès");
        FacesContext.getCurrentInstance().addMessage(null, message);

     }catch(PersistenceException e){
         System.out.println(e.getMessage());
     }



    }

以及获取用户所有操作的方法(有效)

public List<Action> getAllAction(){
                HttpSession sess = (HttpSession) FacesContext.getCurrentInstance().getExternalContext().getSession(true);

        String codeUser =  (String) sess.getAttribute("codeUser");

        EntityManagerFactory emf = null;

        try{
        emf = Persistence.createEntityManagerFactory("GA2010-ejbPU-dev");
        em = emf.createEntityManager();



         Query requete = em.createQuery(SELECT_ALL_ACTION);
          requete.setParameter("codeUtilisateur", codeUser);

         this.allAction= requete.getResultList();



        }catch(Exception e){

         this.message = new FacesMessage(e.getMessage())    ;
         FacesContext.getCurrentInstance().addMessage( null, message );

        }


        return allAction;



    }

这是我的单位持久性的声明

<persistence-unit name="GA2010-ejbPU-dev" transaction-type="JTA">

        <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
        <jta-data-source>dev</jta-data-source>
         <class>entities.Utilisateur</class>
         <class>entities.Action</class>
        <properties>
          <property name="eclipselink.target-server" value="SunAS9"/>
          <property name="eclipselink.logging.level" value="FINE"/>
          <property name="eclipselink.ddl-generation" value="drop-and-create-tables"/>
          <property name="eclipselink.ddl-generation.output-mode" value="sql-script"/>
          <property name="eclipselink.application-location" value="C:/tmp"/>
        </properties>

我如何才能看到为什么坚持不坚持以及为什么我没有错误消息?

4

1 回答 1

0

持久化需要在事务中完成。在您提交事务之前,该对象不会持久化:

Hibernate EntityManager 教程

于 2013-03-22T10:25:00.617 回答