new DefaultBusFactory().createBus(config);
// Init the context which contains the client bean,
// and we use the already loaded bus to set the configuration
// The false parameter means we just use the default bus
// which just set by the DefaultBusFactory
BusApplicationContext context = new BusApplicationContext(beans, false);
Greeter bethal = (Greeter)context.getBean("Bethal");
// verify the client side's setting
verifyBethalClient(bethal);
}