在Ignite XML IgniteConfiguration中,我定义了执行多种功能的服务,包括读取/写入JMS消息以及与相应的缓存进行交互。现在,我想向缓存的数据中添加本机持久性,但是一旦我在任何DataRegionConfiguration中打开了持久性,我的服务就不再启动:
<bean class="org.apache.ignite.configuration.DataRegionConfiguration">
<property name="persistenceEnabled" value="true"/>
</bean>
我确定配置中缺少我要执行的步骤。任何帮助甚至更好的示例配置都将受到赞赏。