in core/servicemix-core/src/main/java/org/apache/servicemix/Main.java [40:93]
public static void main(String args[]) {
try {
String version = "";
Package p = Package.getPackage("org.apache.servicemix");
if (p != null) {
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();
} catch (Exception e) {
System.out.println("Caught: " + e);
e.printStackTrace();
}
}
}
});
//this is for classworlds 1.1 launcher which use System.exit()
//explicitly after lauch Main. To avoid System.exit() being invoked
//during servicemix runing, we need keep ServiceMix main thread alive.
container.block();
} catch (Exception e) {
System.out.println("Caught: " + e);
e.printStackTrace();
}
}