Java tutorial
/** * Copyright (C) 2011 (nick @ objectdefinitions.com) * * This file is part of JTimeseries. * * JTimeseries is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * JTimeseries is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with JTimeseries. If not, see <http://www.gnu.org/licenses/>. */ package com.od.jtimeseries.component.logging; import com.od.jtimeseries.util.logging.LogMethods; import com.od.jtimeseries.util.logging.LogUtils; import org.springframework.beans.BeansException; import org.springframework.beans.factory.config.ConfigurableListableBeanFactory; import org.springframework.beans.factory.config.PropertyPlaceholderConfigurer; import java.util.Map; import java.util.Properties; /** * Created by IntelliJ IDEA. * User: Nick Ebbutt * Date: 01-Dec-2009 * Time: 19:01:28 * * Log the properties loaded from the property file */ public class LoggingPropertyPlaceholderConfigurer extends PropertyPlaceholderConfigurer { private static final LogMethods m = LogUtils.getLogMethods(LoggingPropertyPlaceholderConfigurer.class); protected void processProperties(ConfigurableListableBeanFactory beanFactoryToProcess, Properties props) throws BeansException { super.processProperties(beanFactoryToProcess, props); for (Map.Entry<Object, Object> e : props.entrySet()) { m.info("Property-->'" + e.getKey() + "'='" + e.getValue() + "'"); } } }