Package org.apache.stratum.configuration

Examples of org.apache.stratum.configuration.PropertiesConfiguration


        {
            Object component = Class.forName(className).newInstance();

            // configure component using the given config file
            ((Configurable) component)
                .configure(new PropertiesConfiguration(configFile));

            // initialize component
            ((Initializable) component).initialize();

            if (log.isDebugEnabled())
View Full Code Here


        //props = ServletUtils.expandRelative(config, props);
        props = Turbine.getRealPath(props);

        try
        {
            init((Configuration) new PropertiesConfiguration(props));
        }
        catch (IOException e)
        {
            e.printStackTrace();
            throw new InitializationException("Can't load file " + props);
View Full Code Here

TOP

Related Classes of org.apache.stratum.configuration.PropertiesConfiguration

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.