<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"       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">    <!-- Imports default Ignite configuration -->    <bean abstract="true" id="ignite.cfg" class="org.apache.ignite.configuration.IgniteConfiguration">        <property name="igniteInstanceName" value="integration_tests"/>        <property name="peerClassLoadingEnabled" value="true"/>        <property name="clientMode" value="false"/>        <!-- Redefining maximum memory size for the cluster node usage. -->        <property name="dataStorageConfiguration">            <bean class="org.apache.ignite.configuration.DataStorageConfiguration">                <!-- Redefining the default region's settings -->                <property name="defaultDataRegionConfiguration">                    <bean class="org.apache.ignite.configuration.DataRegionConfiguration">                        <property name="name" value="Default_Region"/>                        <!-- Setting the size of the default region to 4GB. -->                        <property name="maxSize" value="#{4L * 1024 * 1024 * 1024}"/>                    </bean>                </property>            </bean>        </property>        <property name="discoverySpi">            <bean class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi">                <property name="ipFinder">                    <bean class="org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder">                        <property name="addresses">                            <list>                                <value>localhost:47500..47503</value>                            </list>                        </property>                    </bean>                </property>            </bean>        </property>    </bean>    <bean parent="ignite.cfg"/></beans>