问题: 使用Infinispan EmbaddedCache,更新的实体不会反映在数据库中: 情形:
Infinispan版本:8.1 JDK 8
使用id,name属性创建了TestEntity类,使用persistence.xml配置了OGM,在infinispan-config.xml中配置了jpa-store。 Infinispan缓存是从数据库加载的数据,并在调用cache.put(..)时将实体持久存储在数据库中。代码如下。
的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="ogm-jpa" transaction-type="JTA">
<provider>org.hibernate.ogm.jpa.HibernateOgmPersistence</provider>
<properties>
<property name="hibernate.transaction.jta.platform"
value="org.hibernate.service.jta.platform.internal.JBossStandAloneJtaPlatform" />
<property name="hibernate.ogm.datastore.provider"
value="infinispan" />
</properties>
</persistence-unit>
<persistence-unit name="CachePersistenceUnit" transaction-type="RESOURCE_LOCAL">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<class>org.infinispan.persistence.jpa.impl.MetadataEntity</class>
<!-- <class>com.scb.hws.entity.TlPymtDetails</class> -->
<properties>
<property name="javax.persistence.jdbc.url" value="..."/>
<property name="javax.persistence.jdbc.user" value="..."/>
<property name="javax.persistence.jdbc.password" value="..."/>
<property name="javax.persistence.jdbc.driver" value="oracle.jdbc.driver.OracleDriver"/>
<property name="hibernate.show_sql" value="true"/>
<property name="hibernate.format_sql" value="true"/>
</properties>
</persistence-unit>
</persistence>
infinispan-config.xml:
<local-cache name="default">
<persistence passivation="false">
<jpa-store xmlns="urn:infinispan:config:store:jpa:8.0"
shared="true" preload="true"
persistence-unit="CachePersistenceUnit"
entity-class="TestEntity"
singleton="false"
batch-size="1">
</jpa-store>
</persistence>
</local-cache>
每当从OGM持久化实体时,数据都会反映在infinispan缓存中,但不会反映在数据库中。如何解决这个问题?
答案 0 :(得分:0)
根据docs,您需要提供hibernate.ogm.infinispan.cachemanager_jndi_name
配置属性:
如果您在JNDI中注册了Infinispan EmbeddedCacheManager, 提供JNDI名称,Hibernate OGM将使用此实例 启动一个新的CacheManager。这将进一步忽略 Infinispan的配置属性已经假设已经存在 配置。 Infinispan通常可以通过WildFly推送到JNDI, 春天或缝。