Package mfinder.config

Examples of mfinder.config.Configuration


        logger.info("Creating MFinder ActionFactory");

        //不保证ActionFactory属性的重复加载
        if (configLocation != null) {
            logger.info("Load configuration : " + configLocation.getURL());
            this.actionFactory = new Configuration().load(configLocation.getInputStream()).getFactory();
        } else {
            this.actionFactory = actionFactoryClass == null
                    ? new DefaultActionFactory()
                    : actionFactoryClass.newInstance();
        }
View Full Code Here

TOP

Related Classes of mfinder.config.Configuration

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.