version = ": " + p.getImplementationVersion();
}
System.out.println("Starting Apache ServiceMix ESB" + version);
System.out.println();
final AbstractXmlApplicationContext context;
if (args.length <= 0) {
System.out.println("Loading Apache ServiceMix from servicemix.xml on the CLASSPATH");
context = new ClassPathXmlApplicationContext(new String[] {"servicemix.xml"}, false);
} else {
String file = args[0];
if ("-?".equals(file) || "?".equals(file) || "--help".equals(file) || "-h".equals(file)) {
System.out.println("Usage: Main [-v1] [xmlConfigFile]");
System.out.println("If an XML config file is not specified then servicemix.xml is used from the CLASSPATH");
return;
}
List processors = new ArrayList();
processors.add(new ClassLoaderXmlPreprocessor(new File(".")));
System.out.println("Loading Apache ServiceMix from file: " + file);
context = new FileSystemXmlApplicationContext(new String[] {file}, false, processors);
}
context.setValidating(false);
context.refresh();
SpringJBIContainer container = (SpringJBIContainer) context.getBean("jbi");
container.onShutDown(new Runnable() {
public void run() {
if (context instanceof DisposableBean) {
try {
((DisposableBean) context).destroy();