Package net.csdn.modules.cache

Examples of net.csdn.modules.cache.AppCacheModule


        moduleList.add(new ControllerModule());
        boolean disableRedis = settings.getAsBoolean(ServiceFramwork.mode + ".datasources.redis.disable", false);
        if (!disableRedis) {
            moduleList.add(new CacheModule());
        }
        moduleList.add(new AppCacheModule());
        boolean disableMysql = settings.getAsBoolean(ServiceFramwork.mode + ".datasources.mysql.disable", false);

        if (!disableMysql) {
            moduleList.add(new AbstractModule() {
                @Override
View Full Code Here

TOP

Related Classes of net.csdn.modules.cache.AppCacheModule

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.