English 中文(简体)
作为二级缓存的春季+冬眠+infinispa
原标题:spring + hibernate + infinispan as 2nd level cache

我试图在基于春季+Tomcat 的应用程序中为冬眠设置infinispan 作为二级缓存 。

<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
    <property name="driverClassName" value="${hibernate.connection.driver_class}"/>
    <property name="url" value="${hibernate.connection.url}"/>
    <property name="username" value="${hibernate.connection.username}"/>
    <property name="password" value="${hibernate.connection.password}"/>
    <property name="maxActive" value="${hibernate.connection.maxActive}"/>
    <property name="maxIdle" value="${hibernate.connection.maxIdle}"/>
    <property name="minIdle" value="${hibernate.connection.minIdle}"/>
    <property name="maxWait" value="${hibernate.connection.maxWait}"/>
</bean>

<bean id="transactionManager" class="org.springframework.transaction.jta.JtaTransactionManager">
    <property name="transactionManager">
        <bean class="com.arjuna.ats.jta.TransactionManager" factory-method="transactionManager"/>
    </property>
    <property name="userTransaction">
        <bean class="com.arjuna.ats.jta.UserTransaction" factory-method="userTransaction"/>
    </property>
</bean>

<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
    <property name="dataSource" ref="dataSource"/>
    <property name="packagesToScan" value="com.example"/>

    <!---->
    <property name="hibernateProperties" ref="db-properties"/>
</bean>

其属性是:

hibernate.cache.use_second_level_cache=true
hibernate.cache.use_query_cache=true
hibernate.cache.region.factory_class=org.hibernate.cache.infinispan.InfinispanRegionFactory

我有一个例外:

Caused by: org.infinispan.CacheException: This is transactional cache but no transaction manager could be found. Configure the transaction manager lookup properly.

我如何配置交易经理的查询?

最佳回答

Hibernate 和 Infinispan 都需要知道交易管理员的情况。 如果您告诉Hibernate 有关交易管理员的情况, 它将会转而告诉 Infinispan 给您。 我猜Spring 有办法告诉Hibernate 有关 JTA 的设置, 但我找不到它。 Hibernate 和 Infinispan 都需要知道它是如何与 JTA 环境互动的 。 JtaPlatform 是Hibernate 知道如何与 JTA 环境互动的合同 。

问题回答

弹簧的简单答案是添加( 在 < code> id='sessionFastory' 春季 XML 配置) :

<property name="jtaTransactionManager" ref="transactionManager"/>

这是在春季3.2.2.RELESASE(可能从春季3.1.x开始也可以在较旧的春季版本中找到)

这将实现Steve Ebersole 的点点。 这导致 Spring 通过以下班级提供 JtaPlatform 。 https:// github.com/Spring Fource/spring- framework/ blob/master/spring- orm-hibernate4/ scrc/main/java/ org/springframework/ orm/ hibernate/ Confirate4/ConfigforableJtaPlatform.java" rel="nofollow" >https://github. com/Springresourg/spring- framframwork/blob/master/springring- orm-hibernate4/ springform/ hibernate4/ConfigableJtaPlatform.java/ a>

关于JITA的使用情况,请查看 JavaDoc 类 org. sring framework.orm.hibernate4. 当地会议缓存 Bean(您正在使用的) 。





相关问题
Multiple Hibernate instances using C3P0

I am facing a weird problem and it seems to be c3p0 related. I am starting two instances of an app in the same java vm which interact with each other. After some operations "APPARENT DEADLOCK" ...

Hibernate vs Ibatis caching

We can speed up a hibernate app easyly with 2nd level cache using infinispan or ehcache/terracotta,... but ibatis only have a simple interface to implement for caching. And hibernate knows more ...

Using annotations to implement a static join in hibernate

I m relatively new to hibernate and was wondering if someone could help me out. While I have no issues implementing a normal join on multiple columns in hibernate using the @JoinColumns tag, I m ...

Hibernate query with fetch question

I have a 2 entities in a One-To-Many relationship: OfficeView.java: public class OfficeView implements java.io.Serializable { private Integer officeId; private String addr1; private ...

hibernate interceptors : afterTransactionCompletion

I wrote a Hibernate interceptor : public class MyInterceptor extends EmptyInterceptor { private boolean isCanal=false; public boolean onSave(Object entity, Serializable arg1, Object[] arg2, String[]...

How to prevent JPA from rolling back transaction?

Methods invoked: 1. Struts Action 2. Service class method (annotated by @Transactional) 3. Xfire webservice call Everything including struts (DelegatingActionProxy) and transactions is configured ...

Hibernate/GORM: collection was not processed by flush()

I have an integration test in my Grails application that fails when I try to save an entity of type Member invitingMember.save(flush: true) This raises the following exception org.hibernate....

Hibernate Criteria API equivalent for "elements()"

Is it possible to implement the following query using Criteria API? select order from ORDER as order,ITEM as item where item.itemID like ITM_01 and item in elements(order.items)

热门标签