view flys-client/src/main/java/de/intevation/flys/client/server/BaseServlet.java @ 2890:fba76f4afca9

Cosmetics, docs. flys-client/trunk@4573 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Felix Wolfsteller <felix.wolfsteller@intevation.de>
date Mon, 04 Jun 2012 08:21:09 +0000
parents 42d6cf6e10b7
children
line wrap: on
line source
package de.intevation.flys.client.server;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;

import org.apache.log4j.Logger;

/** Documentation goes here. */
public class BaseServlet extends HttpServlet {

    private static Logger logger = Logger.getLogger(BaseServlet.class);


    public static final String LOG4J_PROPERTIES = "FLYS_CLIENT_LOG4J_PROPERIES";


    @Override
    public void init()
    throws ServletException
    {
        System.out.println("BaseServlet.init");

        initLogging();
        initConfigParameters();
    }


    /** Init servlet wide logging. */
    protected void initLogging() {
        String log4jProperties = System.getenv(LOG4J_PROPERTIES);

        if (log4jProperties == null || log4jProperties.length() == 0) {
            String file = getInitParameter("log4j-properties");

            if (file != null && file.length() > 0) {
                log4jProperties = getServletContext().getRealPath(file);
            }
        }

        LoggingConfigurator.init(log4jProperties);
    }


    /** Set Context Attribute (parameter) from config.xml file. */
    protected void initConfigParameters() {
        String url = getInitParameter("server-url");
        logger.debug("Found server url: " + url);

        getServletContext().setAttribute("server-url", url);
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org