ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(
"testDempsy/Dempsy.xml", "testDempsy/ClusterInfo-LocalActx.xml", "testDempsy/Serializer-KryoActx.xml",
"testDempsy/Transport-PassthroughActx.xml", "testDempsy/SimpleMultistageApplicationActx.xml" );
Dempsy dempsy = (Dempsy)context.getBean("dempsy");
ClusterInfoSessionFactory factory = dempsy.getClusterSessionFactory();
ClusterInfoSession session = factory.createSession();
ClusterId curCluster = new ClusterId("test-app", "test-cluster1");
TestUtils.createClusterLevel(curCluster, session);
session.setData(curCluster.asPath(), new DecentralizedRoutingStrategy.DefaultRouterClusterInfo(20,2));
session.stop();
dempsy.stop();