我的应用程序是由Spring rest控制器使用redis调用服务构成的。 我使用的是spring boot starter redis 1.2.5,我在beans.xml文件中定义了一个模板:
<bean id="jedisConnectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory"
p:host-name="${spring.redis.host}"
p:use-pool="true"
p:port="${spring.redis.port}"
/>
<bean id="redisTemplateForTransaction" class="org.springframework.data.redis.core.RedisTemplate"
p:connection-factory-ref="jedisConnectionFactory"
p:keySerializer-ref="stringRedisSerializer"
p:valueSerializer-ref="jsonRedisSerializerForTransaction"
p:enableTransactionSupport="true">
<qualifier value="redisTemplateForTransaction" />
</bean>
当我启动超过8个查询时,我的应用程序阻止。我知道我已经达到了池中默认的连接数。
为什么在请求处理结束时没有自动返回连接?
如何在事务模式下工作,以便任何传入请求将获得其redis连接并在处理结束时返回它?
答案 0 :(得分:3)
您需要通过提供PlatformTransactionManager
bean来启用应用程序的事务管理。
最简单的方法是在Spring Boot应用程序中添加@EnableTransactionManagement
。如果这不可能,请配置PlatformTransactionManager
bean。重用现有的DataSourceTransactionManager
是最简单的方法。如果您不使用符合JDBC的数据库,只需插入H2内存数据库即可。
如果您想使用JTA事务管理器,请参阅此博文:https://spring.io/blog/2011/08/15/configuring-spring-and-jta-without-full-java-ee/
HTH,马克