/* * Copyright (C) 2005-2008 Alfresco Software Limited. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * This program 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 General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * As a special exception to the terms and conditions of version 2.0 of * the GPL, you may redistribute this Program in connection with Free/Libre * and Open Source Software ("FLOSS") applications as described in Alfresco's * FLOSS exception. You should have recieved a copy of the text describing * the FLOSS exception, and it is also available here: * http://www.alfresco.com/legal/licensing" */ package org.alfresco.repo.admin; import java.lang.reflect.Method; import java.net.URL; import java.util.ArrayList; import java.util.List; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.springframework.beans.BeansException; import org.springframework.context.ApplicationContext; import org.springframework.context.ApplicationContextAware; import org.springframework.core.io.Resource; import org.springframework.core.io.support.PathMatchingResourcePatternResolver; import org.springframework.core.io.support.ResourcePatternResolver; /** * Initialises Log4j's HierarchyDynamicMBean (refer to core-services-context.xml) and any overriding log4.properties files. * The actual implementation uses introspection to avoid any hard-coded references to Log4J classes. If Log4J is * not present, this class will do nothing. *
* Alfresco modules can provide their own log4j.properties file, which augments/overrides the global log4j.properties * within the Alfresco webapp. Within the module's source tree, suppose you create: *
* config/alfresco/module/{module.id}/log4j.properties ** At deployment time, this log4j.properties file will be placed in: *
* WEB-INF/classes/alfresco/module/{module.id}/log4j.properties ** Where {module.id} is whatever value is set within the AMP's module.properties file. For details, see: Developing an Alfresco Module *
* For example, if {module.id} is "org.alfresco.module.avmCompare", then within your source code you'll have: * *
* config / alfresco / module / org.alfresco.module.avmCompare / log4j.properties ** * This would be deployed to: *
* WEB - INF / classes / alfresco / module / org.alfresco.module.avmCompare / log4j.properties **/ public class Log4JHierarchyInit implements ApplicationContextAware { private static Log logger = LogFactory.getLog(Log4JHierarchyInit.class); private List
* This function supports Spring's syntax for retrieving multiple class path resources with the same name,
* via the "classpath*:" prefix. For details, see: {@link PathMatchingResourcePatternResolver}.
*/
public void setExtraLog4jUrls(List