Package org.atomojo.app.storage.file

Examples of org.atomojo.app.storage.file.FileStorageFactory


     
      ServerConfiguration conf = new ServerConfiguration();
      File serverConfFile = new File(dir,"server.conf");
      assertTrue(serverConfFile.exists());
      conf.load(serverConfFile.toURI());
      StorageFactory storageFactory = new FileStorageFactory();
      WebComponent web = new WebComponent(dir,dbList,storageFactory,conf);
      for (DB db : dbList.values()) {
         db.connect();
      }
      web.start();
View Full Code Here


  
   public void startServer()
      throws Exception
   {
      dbList.get("data").connect();
      StorageFactory storageFactory = new FileStorageFactory();
      www = new WebComponent(getDatabaseDirectory(),dbList,storageFactory,conf);
      www.start();
   }
View Full Code Here

TOP

Related Classes of org.atomojo.app.storage.file.FileStorageFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.