*/
public static void main(String[] args) {
ClassPathXmlApplicationContext ctx = null;
try {
ctx = new ClassPathXmlApplicationContext("/applicationContext.xml");
ISampleService service = (ISampleService) ctx.getBean("hivemindService");
service.executeService("sample");
}
catch (Exception ex) {
log.error("Error during execution", ex);
}