正确刷新数据库JPA中的数据 - Hibernate

时间:2015-08-04 18:41:40

标签: java hibernate jpa hibernate-4.x

我目前正在使用JPA规范从数据库中查询我的对象。

每当我(我的软件实例)做出更改时,这些项目都会被正确刷新。

但是,如果其他人(其他实例或数据库更改)进行了其他更改,则这些项目无法正确刷新。

我正在使用“刷新”的简单“查找”

Object found = getManager().find(getModelClass(), id);
getManager().refresh(found);

我正在使用DAO Hierarchy,“getModelClass”返回我的@Entity类,如

@Override
protected Class<?> getModelClass() {
    return ProductCategory.class;
}

我的Manifest / persistence.xml:

<?xml version="1.0" encoding="UTF-8" ?>
<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"
    version="2.0" xmlns="http://java.sun.com/xml/ns/persistence">
    <persistence-unit name="casa" transaction-type="RESOURCE_LOCAL">
       <provider>org.hibernate.ejb.HibernatePersistence</provider>

        <properties>
            <property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5InnoDBDialect" />
            <property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver" />

            <!-- localhost -->
            <property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost:3306/database" />
            <property name="javax.persistence.jdbc.user" value="root" />
            <property name="javax.persistence.jdbc.password" value="root" />


            <property name="hibernate.show_sql" value="false" />
            <property name="hibernate.format_sql" value="false" />
            <property name="hibernate.use_sql_comments" value="false" />
            <property name="hibernate.jdbc.wrap_result_sets" value="false" />
            <property name="hibernate.hibernate.cache.use_query_cache" value="true" />
            <property name="hibernate.hbm2ddl.auto" value="update" /> 

        </properties>

    </persistence-unit>
</persistence>

此外,每个“DAO”都有自己的EntityManager和实例。

我可能做错了什么?

感谢帮助!

1 个答案:

答案 0 :(得分:0)

好像我的问题很简单。

需要提交要从数据库中正确刷新的刷新事务

getManager().getTransaction().begin();
T found = (T) getManager().find(getModelClass(), id);
getManager().refresh(found);
getManager().getTransaction().commit();