*/
public static void main(String[] args) {
ClassPathXmlApplicationContext ctx=null;
try {
ctx=new ClassPathXmlApplicationContext(getContextEngine(args));
CarsService service=(CarsService)ctx.getBean("carsService");
showGoodBargainCars(service);
} catch(Exception ex) {
ex.printStackTrace();
log.error("Error during execution",ex);
} finally {