{
private ClassPathXmlApplicationContext ap;
public App(String[] configs){
ap = new ClassPathXmlApplicationContext(configs);
final HttpServer httpserver = ap.getBean("httpserver", HttpServer.class);
httpserver.setPort(Integer.parseInt(System.getProperty("port", "8999")));
httpserver.start();
System.out.println("HTTP STARTED");
}