jpa批量插入不正确插入

时间:2013-07-01 11:27:00

标签: jsf jpa persistence bulkinsert

我正在使用jpa项目开发jsf现在我遇到大量插入的问题,大约列表大小超过6000,这意味着它应该在表中插入超过6000条记录,但它只插入215条记录。

我的代码在这里

    factory = Persistence.createEntityManagerFactory(PERSISTENCE_UNIT_NAME);
            EntityManager em = factory.createEntityManager();
            try {
                em.getTransaction().begin();
                for (int i = 0; i < sgmlList.size(); i++) {
                    // Getting the object from the list by using loop
                    SGML sgml = sgmlList.get(i);
                    em.persist(sgml);

                }
em.getTransaction().commit();
                FacesContext.getCurrentInstance().addMessage(null,
                        new FacesMessage("SGML imported successfully"));
            } catch (Exception ex) {

            } finally {
                if (em != null) {
                    em.close();
                }
            }

我的持久性xml是

<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
    <persistence-unit name="Cation" transaction-type="RESOURCE_LOCAL">
        <class>com.cation.bean.Users</class>
        <class>com.cation.bean.BatchInfo</class>
        <class>com.cation.bean.SGML</class>
        <properties>
            <property name="javax.persistence.jdbc.url" value="jdbc:mysql://192.168.1.4:3306/cation"/>
            <property name="javax.persistence.jdbc.user" value="rix"/>
            <property name="javax.persistence.jdbc.password" value="rix123"/>
            <property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver"/>
        </properties>
    </persistence-unit>
</persistence>

我在列表中持久保存对象时也试过这段代码

if (i % 200 == 0) {
                    em.flush();
                    em.clear();
                }

然后也出现了同样的问题。任何人都可以帮助解决这个问题PLZ。

1 个答案:

答案 0 :(得分:0)

你得到什么错误?您正在处理所有错误并忽略它们,删除它以捕获错误。