假设我有Gemfire定位器&已在目标部署环境中运行的cacheserver进程。目标部署环境使用client-server topology。
我有一个想要使用Gemfire缓存的Spring 3.1 MVC应用程序。我正在使用Spring Data Gemfire 1.2.2和Gemfire 6.6.1
所以我已将以下内容添加到spring.xml
<util:properties id="gemfire-props">
<prop key="log-level">${gemfire.log-level}</prop>
<prop key="mcast-port">${gemfire.mcast-port}</prop>
<prop key="locators">${gemfire.locators}</prop>
</util:properties>
<gfe:cache id="gemfireCache" properties-ref="gemfire-props"/>
<gfe:replicated-region id="myCacheRegion" cache-ref="gemfireCache">
<gfe:cache-listener>
<ref bean="gemfireCacheLogListener"/>
</gfe:cache-listener>
<gfe:entry-ttl timeout="${gemfire.myCacheRegion.ttl}" action="DESTROY"/>
</gfe:replicated-region>
<bean id="gemfireCacheLogListener" class="org.awong.GemfireCacheLogListener"></bean>
<bean id="cacheManager" class="org.springframework.data.gemfire.support.GemfireCacheManager"
p:cache-ref="gemfireCache">
<property name="regions">
<set>
<ref bean="myCacheRegion"/>
</set>
</property>
</bean>
假设外部JAR依赖项已在Maven中正确定义。还假设我加载了一个属性文件,用于定义上面引用的属性值。 locators
属性定义为使用已启动的Gemfire定位器的IP和端口。
我认为这应该足够好,以便我可以使用@Cacheable
在我的MVC应用程序中注释bean。我希望这些配置启动应用程序服务器中的定位器以连接到Gemfire网格,将myCacheRegion
添加到Gemfire缓存服务器,然后cacheManager
应该能够使用新的缓存区域。
我得到的BeanCreationException
是由Spring启动时无法连接到定位器引起的:
4-Mar-2013 16:02:08.750 SEVERE org.apache.catalina.core.ApplicationContext.log StandardWrapper.Throwable
org.springframework.beans.factory.BeanCreationException:
[rest of stack trace snipped out]
nested exception is com.gemstone.gemfire.GemFireConfigException: Unable to contact a Locator service. Operation either timed out or Locator does not exist.
Configured list of locators is "[hostnameOfLocator<v0>:portOfLocator]".
但是当我部署到目标环境时,无法创建Gemfire bean,因为定位器进程无法连接。我错过了什么?
答案 0 :(得分:1)
没有看到日志就很难说。您的配置看起来不错。您在这些进程和locator.log中看到了哪些错误?
我希望这些配置在应用服务器中启动定位器。
这些配置不会启动定位器,只会连接到已配置的定位器。但是你早先说过定位器已经启动了。使用定位器时,mcast-port也应始终为0。
一个常见的问题是gemfire.jars必须都是同一个版本。 SDGF 1.2.2取决于gemfire 7.0。如果您使用的是gemfire 6.6.1,则需要从pom中的spring-data-gemfire中排除gemfire依赖项。
目标部署使用客户端服务器拓扑。
此配置适用于点对点。它应该仍然有效,但如果您有现有的缓存服务器,您可能希望将其配置为客户端。此区域是服务器或本地数据的复制吗?请注意,如果您只需要@Cacheable,则无需连接到网格。独立的嵌入式缓存可以正常工作。
答案 1 :(得分:0)
您可以尝试配置定位器池,例如:
<gfe:pool id="locatorPool">
<gfe:locator host="host1" port="port1"/>
<gfe:locator host="host2" port="port2"/>
</gfe:pool>
然后将缓存链接到此池:
<gfe:cache id="gemfireCache" pool-name="locatorPool"/>