50 lines
2.0 KiB
XML
50 lines
2.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
xmlns:context="http://www.springframework.org/schema/context"
|
|
xmlns:gfe="http://www.springframework.org/schema/gemfire"
|
|
xmlns:p="http://www.springframework.org/schema/p"
|
|
xmlns:util="http://www.springframework.org/schema/util"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="
|
|
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
|
|
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
|
|
http://www.springframework.org/schema/gemfire http://www.springframework.org/schema/gemfire/spring-gemfire.xsd
|
|
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd
|
|
">
|
|
|
|
<!-- tag::beans[] -->
|
|
<!--1-->
|
|
<context:annotation-config/>
|
|
|
|
<!--2-->
|
|
<context:property-placeholder location="classpath:META-INF/spring/application.properties"/>
|
|
|
|
<!--3-->
|
|
<bean class="sample.GemFireCacheServerReadyBeanPostProcessor"/>
|
|
|
|
<!--4-->
|
|
<util:properties id="gemfireProperties">
|
|
<prop key="log-level">${sample.httpsession.gemfire.log-level:warning}</prop>
|
|
</util:properties>
|
|
|
|
<!--5-->
|
|
<gfe:client-cache properties-ref="gemfireProperties" pool-name="gemfirePool"/>
|
|
|
|
<!--6-->
|
|
<gfe:pool keep-alive="false"
|
|
ping-interval="5000"
|
|
read-timeout="5000"
|
|
retry-attempts="1"
|
|
subscription-enabled="true"
|
|
thread-local-connections="false">
|
|
<gfe:server host="${application.gemfire.client-server.host}"
|
|
port="${spring.session.data.gemfire.port:${application.gemfire.client-server.port}}"/>
|
|
</gfe:pool>
|
|
|
|
<!--7-->
|
|
<bean class="org.springframework.session.data.gemfire.config.annotation.web.http.GemFireHttpSessionConfiguration"
|
|
p:maxInactiveIntervalInSeconds="30" p:poolName="DEFAULT"/>
|
|
<!-- end::beans[] -->
|
|
|
|
</beans>
|