|  |  | 
 |  |  |    | 
 |  |  |   public static final String RB_SERVER_START_MSG = "msgServerStart"; | 
 |  |  |   public static final String RB_WEBROOT = "webroot"; | 
 |  |  |   public static final String RB_UI_ROOT = "uiroot"; | 
 |  |  |   //public static final String RB_UI_ROOT = "uiroot"; | 
 |  |  |   public static final String RB_STOP_SERVER = "stopServer"; | 
 |  |  |   public static final String RB_ABLAGE_TEST = "testAblage"; | 
 |  |  |   public static final String RB_STORE_TEST = "testStore"; | 
 |  |  | 
 |  |  |   public void start() throws IOException { | 
 |  |  |     logger.log(Level.INFO, App.getRs(RB_SERVER_START_MSG), Integer.toString(port)); | 
 |  |  |      | 
 |  |  |     String ui = App.getInitParameter(App.getRs(App.RB_AP_UI)); | 
 |  |  |      | 
 |  |  |     File uiDir = new File(ui); | 
 |  |  |     String wwwData = App.getInitParameter(App.getRs(App.RB_AP_WWW_DATA)); | 
 |  |  |     File wwwDir = new File(wwwData); | 
 |  |  |     //String ui = App.getInitParameter(App.getRs(App.RB_AP_UI)); | 
 |  |  |     //File uiDir = new File(ui); | 
 |  |  |  | 
 |  |  |     HttpServer server = HttpServer.create(new InetSocketAddress(port), 0); | 
 |  |  |     server.createContext(ctx + App.getRs(RB_WEBROOT), new FileHandler(App.getInitParameter(App.getRs(App.RB_AP_WWW_DATA)))); | 
 |  |  |     server.createContext(ctx + App.getRs(RB_UI_ROOT), new FileHandler(uiDir.getAbsolutePath()));     | 
 |  |  |     server.createContext(ctx + App.getRs(RB_WEBROOT), new FileHandler(wwwDir.getAbsolutePath())); | 
 |  |  |     //server.createContext(ctx + App.getRs(RB_UI_ROOT), new FileHandler(uiDir.getAbsolutePath()));     | 
 |  |  |     server.createContext(ctx + App.getRs(RB_STOP_SERVER), new StopServerHandler()); | 
 |  |  |     server.createContext(ctx + App.getRs(RB_ABLAGE_TEST), new AblageTestHandler()); | 
 |  |  |     server.createContext(ctx + App.getRs(RB_STORE_TEST), new StoreTestHandler()); |