final BootstrapServlet bootstrapServlet = new BootstrapServlet();
bootstrapServlet.addStylesheet("css/sample.less");
bootstrapServlet.addStylesheet("css/ponysdk.less");
bootstrapServlet.addJavascript("script/less.js");
final Main main = new Main();
main.setApplicationContextName("trading");
main.setPort(8081);
main.setHttpServlet(httpServlet);
main.setHttpSessionListener(applicationLoader);
main.setServletContextListener(applicationLoader);
main.setBootstrapServlet(bootstrapServlet);
main.start();
} catch (final Exception e) {
log.error("", e);
}
}