All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tk.hongkailiu.test.app.util.ConfigUtil Maven / Gradle / Ivy

The newest version!
package tk.hongkailiu.test.app.util;

import org.apache.log4j.xml.DOMConfigurator;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.FileSystemXmlApplicationContext;

public class ConfigUtil {
    public static void configLog4j(String log4jPath) {
        DOMConfigurator.configure(log4jPath);
    }

    public static ApplicationContext configSpring(String spring_path) {
        return new FileSystemXmlApplicationContext(spring_path);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy