Mercurial > dive4elements > framework
view artifact-database/src/main/java/de/intevation/artifactdatabase/App.java @ 218:70cbbe144931
Added a describe() method for ArtifactCollections.
artifacts/trunk@1558 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Thu, 24 Mar 2011 15:48:26 +0000 |
parents | b2115f484edb |
children | fbd57d2eeaef |
line wrap: on
line source
/* * Copyright (c) 2010 by Intevation GmbH * * This program is free software under the LGPL (>=v2.1) * Read the file LGPL.txt coming with the software for details * or visit http://www.gnu.org/licenses/ if it does not exist. */ package de.intevation.artifactdatabase; import de.intevation.artifacts.common.utils.Config; import de.intevation.artifactdatabase.rest.Standalone; import java.io.File; import java.net.MalformedURLException; import org.apache.log4j.PropertyConfigurator; import org.slf4j.bridge.SLF4JBridgeHandler; /** * Starting point of the artifact database. * * @author <a href="mailto:sascha.teichmann@intevation.de">Sascha L. Teichmann</a> */ public class App { /** * The logging is done via Log4j. To configure the logging * a file 'log4j.properties' is search in the configuration directory. */ public static final String LOG4J_PROPERTIES = "log4j.properties"; /** * Trys to load the Log4j configuration from ${config.dir}/log4j.properties. */ public static final void configureLogging() { File configDir = Config.getConfigDirectory(); File propFile = new File(configDir, LOG4J_PROPERTIES); if (propFile.isFile() && propFile.canRead()) { try { PropertyConfigurator.configure(propFile.toURI().toURL()); SLF4JBridgeHandler.install(); } catch (MalformedURLException mue) { mue.printStackTrace(System.err); } } } /** * Starts the artifact database. * @param args The commandline arguments. Unused. */ public static void main(String[] args) { configureLogging(); FactoryBootstrap bootstrap = new FactoryBootstrap(); bootstrap.boot(); Backend backend = Backend.getInstance(); ArtifactDatabaseImpl db = new ArtifactDatabaseImpl( bootstrap, backend); DatabaseCleaner cleaner = new DatabaseCleaner( bootstrap.getContext(), backend); bootstrap = null; backend.setCleaner(cleaner); cleaner.setFilter(db); cleaner.start(); Standalone.startAsServer(db); } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :