0

这是我的配置,首先是persistence.xml:

<persistence 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"
    version="2.0">     
<persistence-unit name="db" transaction-type="RESOURCE_LOCAL">
    <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
        <!-- This is needed to allow it to find entities by annotations -->
    <exclude-unlisted-classes>false</exclude-unlisted-classes>
    <shared-cache-mode>ALL</shared-cache-mode> 

    <properties>
    <property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver"/>
        <property name="javax.persistence.jdbc.user" value="user"/>
        <property name="javax.persistence.jdbc.password" value="password"/>
        <property name="javax.persistence.jdbc.url" value="jdbc:mysql://ip/dbname"/>

        <property name="eclipselink.logging.level" value="FINEST"/>     
        <property name="eclipselink.weaving" value="static"/>
        <property name="eclipselink.cache.type.default" value="SoftWeak"/>

    </properties>
</persistence-unit>
</persistence>

这是我创建 EntityManagerFactory 的方法。

private static EntityManagerFactory factory = null;

public synchronized static DBStore getInstance() {
    if (factory == null) {
        factory = Persistence.createEntityManagerFactory("db");
    }
    return new DBStore(factory.createEntityManager());
}

其中 DBStore 是我用作访问 EntityManager 的中间人的对象。

使用 EclipseLink 2.4

这就是问题所在。如果我创建线程 1,为它获取一个 DBStore 对象,对现有实体进行一些更改,将它们提交到数据库,然后我有另一个并发线程 (2) 在进行更改并提交之前和之后加载相同的实体,第二个线程看不到第一个线程提交的更改。我知道更改在数据库中,因为我可以看到它们。此外,如果在第二个线程上我在检查实体的值之前调用 EntityManager.refresh(entity),那么它工作正常。所以我在这里的猜测是我的两个线程没有相互共享它们的缓存,即使如果你使用相同的 EntityManagerFactory EclipseLink 应该这样做,我认为它是静态的。

那么我的设置有什么问题?

4

1 回答 1

0

每个 EntityManager 都有自己的缓存,因为它们旨在表示单独的事务上下文。因此,读入 EntityManager 的预先存在的实体不会显示来自其他实体的更改,除非刷新或清除 EM 并重新读取实体。此处描述了关于 JPA 的 Eclipselink 缓存:http ://wiki.eclipse.org/EclipseLink/Examples/JPA/Caching

于 2012-12-14T01:06:31.460 回答