+ various javadoc improvements

This commit is contained in:
costin
2010-07-16 15:12:31 +03:00
parent a7553c1a76
commit 13258143f0
10 changed files with 51 additions and 11 deletions

View File

@@ -6,12 +6,19 @@
<!-- all beans are lazy to allow the same config to be used between multiple tests -->
<!-- as there can be only one cache per VM -->
<bean id="default-cache" class="org.springframework.data.gemfire.CacheFactoryBean"/>
<bean id="default-cache" class="org.springframework.data.gemfire.CacheFactoryBean">
<property name="properties">
<props>
<prop key="log-level">warning</prop>
</props>
</property>
</bean>
<bean id="cache-with-props" class="org.springframework.data.gemfire.CacheFactoryBean">
<property name="properties">
<props>
<prop key="name">cache-with-props</prop>
<prop key="log-level">warning</prop>
</props>
</property>
</bean>
@@ -20,6 +27,7 @@
<property name="properties">
<props>
<prop key="name">cache-with-props</prop>
<prop key="log-level">warning</prop>
</props>
</property>
</bean>

View File

@@ -6,7 +6,13 @@
<!-- all beans are lazy to allow the same config to be used between multiple tests -->
<!-- as there can be only one cache per VM -->
<bean id="cache" class="org.springframework.data.gemfire.CacheFactoryBean"/>
<bean id="cache" class="org.springframework.data.gemfire.CacheFactoryBean">
<property name="properties">
<props>
<prop key="log-level">warning</prop>
</props>
</property>
</bean>
<bean id="basic" class="org.springframework.data.gemfire.RegionFactoryBean" p:cache-ref="cache" p:name="basic"/>