int nrOfCalls = 1;
if (args.length > 1 && !"".equals(args[1])) {
nrOfCalls = Integer.parseInt(args[1]);
}
ApplicationContext context = new FileSystemXmlApplicationContext(CONTEXT_CONFIG_LOCATION);
ImageDatabase idb = (ImageDatabase) context.getBean("imageDatabase");
StandaloneImageTool tool = new StandaloneImageTool(idb);
tool.listImages(nrOfCalls);
}