ProducerService producerService = (ProducerService)appContext.getBean("producerService");
producerService.send();
}
private static void receive(){
ConsumerService consumerService = (ConsumerService)appContext.getBean("consumerService");
consumerService.receive();
}