moduleList.add(new ScanModule());
moduleList.add(new SystemLoggerModule());
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) {