当前位置: 首页>>代码示例>>Java>>正文


Java ComponentConfig.ServiceResourceInfo方法代码示例

本文整理汇总了Java中org.ofbiz.base.component.ComponentConfig.ServiceResourceInfo方法的典型用法代码示例。如果您正苦于以下问题:Java ComponentConfig.ServiceResourceInfo方法的具体用法?Java ComponentConfig.ServiceResourceInfo怎么用?Java ComponentConfig.ServiceResourceInfo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.ofbiz.base.component.ComponentConfig的用法示例。


在下文中一共展示了ComponentConfig.ServiceResourceInfo方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: readConfig

import org.ofbiz.base.component.ComponentConfig; //导入方法依赖的package包/类
public static void readConfig() {
    List<ServiceGroups> serviceGroupsList = null;
    try {
        serviceGroupsList = ServiceConfigUtil.getServiceEngine().getServiceGroups();
    } catch (GenericConfigException e) {
        // FIXME: Refactor API so exceptions can be thrown and caught.
        Debug.logError(e, module);
        throw new RuntimeException(e.getMessage());
    }
    for (ServiceGroups serviceGroup : serviceGroupsList) {
        ResourceHandler handler = new MainResourceHandler(ServiceConfigUtil.SERVICE_ENGINE_XML_FILENAME, serviceGroup.getLoader(), serviceGroup.getLocation());
        addGroupDefinitions(handler);
    }

    // get all of the component resource group stuff, ie specified in each ofbiz-component.xml file
    for (ComponentConfig.ServiceResourceInfo componentResourceInfo: ComponentConfig.getAllServiceResourceInfos("group")) {
        addGroupDefinitions(componentResourceInfo.createResourceHandler());
    }
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:20,代码来源:ServiceGroupReader.java

示例2: readConfig

import org.ofbiz.base.component.ComponentConfig; //导入方法依赖的package包/类
public static void readConfig() {
    // TODO: Missing in XSD file.

    // get all of the component resource eca stuff, ie specified in each ofbiz-component.xml file
    for (ComponentConfig.ServiceResourceInfo componentResourceInfo: ComponentConfig.getAllServiceResourceInfos("mca")) {
        addMcaDefinitions(componentResourceInfo.createResourceHandler());
    }
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:9,代码来源:ServiceMcaUtil.java

示例3: getGlobalServiceMap

import org.ofbiz.base.component.ComponentConfig; //导入方法依赖的package包/类
private Map<String, ModelService> getGlobalServiceMap() {
    Map<String, ModelService> serviceMap = modelServiceMapByModel.get(this.model);
    if (serviceMap == null) {
        serviceMap = new HashMap<String, ModelService>();

        List<Future<Map<String, ModelService>>> futures = new LinkedList<Future<Map<String, ModelService>>>();
        List<GlobalServices> globalServicesList = null;
        try {
            globalServicesList = ServiceConfigUtil.getServiceEngine().getGlobalServices();
        } catch (GenericConfigException e) {
            // FIXME: Refactor API so exceptions can be thrown and caught.
            Debug.logError(e, module);
            throw new RuntimeException(e.getMessage());
        }
        for (GlobalServices globalServices : globalServicesList) {
            ResourceHandler handler = new MainResourceHandler(ServiceConfigUtil.SERVICE_ENGINE_XML_FILENAME, globalServices.getLoader(), globalServices.getLocation());
            futures.add(ExecutionPool.GLOBAL_FORK_JOIN.submit(createServiceReaderCallable(handler)));
        }

        // get all of the component resource model stuff, ie specified in each ofbiz-component.xml file
        for (ComponentConfig.ServiceResourceInfo componentResourceInfo: ComponentConfig.getAllServiceResourceInfos("model")) {
            futures.add(ExecutionPool.GLOBAL_FORK_JOIN.submit(createServiceReaderCallable(componentResourceInfo.createResourceHandler())));
        }
        for (Map<String, ModelService> servicesMap: ExecutionPool.getAllFutures(futures)) {
            if (servicesMap != null) {
                serviceMap.putAll(servicesMap);
            }
        }

        if (serviceMap != null) {
            Map<String, ModelService> cachedServiceMap = modelServiceMapByModel.putIfAbsentAndGet(this.model, serviceMap);
            if (cachedServiceMap == serviceMap) { // same object: this means that the object created by this thread was actually added to the cache
                ServiceEcaUtil.reloadConfig();
            }
        }
    }
    return serviceMap;
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:39,代码来源:DispatchContext.java

示例4: readConfig

import org.ofbiz.base.component.ComponentConfig; //导入方法依赖的package包/类
public static void readConfig() {
    // Only proceed if the cache hasn't already been populated, caller should be using reloadConfig() in that situation
    if (UtilValidate.isNotEmpty(ecaCache)) {
        return;
    }

    List<Future<List<ServiceEcaRule>>> futures = new LinkedList<Future<List<ServiceEcaRule>>>();
    List<ServiceEcas> serviceEcasList = null;
    try {
        serviceEcasList = ServiceConfigUtil.getServiceEngine().getServiceEcas();
    } catch (GenericConfigException e) {
        // FIXME: Refactor API so exceptions can be thrown and caught.
        Debug.logError(e, module);
        throw new RuntimeException(e.getMessage());
    }
    for (ServiceEcas serviceEcas : serviceEcasList) {
        ResourceHandler handler = new MainResourceHandler(ServiceConfigUtil.SERVICE_ENGINE_XML_FILENAME, serviceEcas.getLoader(), serviceEcas.getLocation());
        futures.add(ExecutionPool.GLOBAL_FORK_JOIN.submit(createEcaLoaderCallable(handler)));
    }

    // get all of the component resource eca stuff, ie specified in each ofbiz-component.xml file
    for (ComponentConfig.ServiceResourceInfo componentResourceInfo: ComponentConfig.getAllServiceResourceInfos("eca")) {
        futures.add(ExecutionPool.GLOBAL_FORK_JOIN.submit(createEcaLoaderCallable(componentResourceInfo.createResourceHandler())));
    }

    for (List<ServiceEcaRule> handlerRules: ExecutionPool.getAllFutures(futures)) {
        mergeEcaDefinitions(handlerRules);
    }
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:30,代码来源:ServiceEcaUtil.java

示例5: getGlobalServiceMap

import org.ofbiz.base.component.ComponentConfig; //导入方法依赖的package包/类
private Map<String, ModelService> getGlobalServiceMap() {
    Map<String, ModelService> serviceMap = modelServiceMapByModel.get(this.model);
    if (serviceMap == null) {
        serviceMap = FastMap.newInstance();

        List<Future<Map<String, ModelService>>> futures = FastList.newInstance();
        List<GlobalServices> globalServicesList = null;
        try {
            globalServicesList = ServiceConfigUtil.getServiceEngine().getGlobalServices();
        } catch (GenericConfigException e) {
            // FIXME: Refactor API so exceptions can be thrown and caught.
            Debug.logError(e, module);
            throw new RuntimeException(e.getMessage());
        }
        for (GlobalServices globalServices : globalServicesList) {
            ResourceHandler handler = new MainResourceHandler(ServiceConfigUtil.SERVICE_ENGINE_XML_FILENAME, globalServices.getLoader(), globalServices.getLocation());
            futures.add(ExecutionPool.GLOBAL_EXECUTOR.submit(createServiceReaderCallable(handler)));
        }

        // get all of the component resource model stuff, ie specified in each ofbiz-component.xml file
        for (ComponentConfig.ServiceResourceInfo componentResourceInfo: ComponentConfig.getAllServiceResourceInfos("model")) {
            futures.add(ExecutionPool.GLOBAL_EXECUTOR.submit(createServiceReaderCallable(componentResourceInfo.createResourceHandler())));
        }
        for (Map<String, ModelService> servicesMap: ExecutionPool.getAllFutures(futures)) {
            if (servicesMap != null) {
                serviceMap.putAll(servicesMap);
            }
        }

        if (serviceMap != null) {
            Map<String, ModelService> cachedServiceMap = modelServiceMapByModel.putIfAbsentAndGet(this.model, serviceMap);
            if (cachedServiceMap == serviceMap) { // same object: this means that the object created by this thread was actually added to the cache
                ServiceEcaUtil.reloadConfig();
            }
        }
    }
    return serviceMap;
}
 
开发者ID:gildaslemoal,项目名称:elpi,代码行数:39,代码来源:DispatchContext.java

示例6: readConfig

import org.ofbiz.base.component.ComponentConfig; //导入方法依赖的package包/类
public static void readConfig() {
    // Only proceed if the cache hasn't already been populated, caller should be using reloadConfig() in that situation
    if (UtilValidate.isNotEmpty(ecaCache)) {
        return;
    }

    List<Future<List<ServiceEcaRule>>> futures = FastList.newInstance();
    List<ServiceEcas> serviceEcasList = null;
    try {
        serviceEcasList = ServiceConfigUtil.getServiceEngine().getServiceEcas();
    } catch (GenericConfigException e) {
        // FIXME: Refactor API so exceptions can be thrown and caught.
        Debug.logError(e, module);
        throw new RuntimeException(e.getMessage());
    }
    for (ServiceEcas serviceEcas : serviceEcasList) {
        ResourceHandler handler = new MainResourceHandler(ServiceConfigUtil.SERVICE_ENGINE_XML_FILENAME, serviceEcas.getLoader(), serviceEcas.getLocation());
        futures.add(ExecutionPool.GLOBAL_EXECUTOR.submit(createEcaLoaderCallable(handler)));
    }

    // get all of the component resource eca stuff, ie specified in each ofbiz-component.xml file
    for (ComponentConfig.ServiceResourceInfo componentResourceInfo: ComponentConfig.getAllServiceResourceInfos("eca")) {
        futures.add(ExecutionPool.GLOBAL_EXECUTOR.submit(createEcaLoaderCallable(componentResourceInfo.createResourceHandler())));
    }

    for (List<ServiceEcaRule> handlerRules: ExecutionPool.getAllFutures(futures)) {
        mergeEcaDefinitions(handlerRules);
    }
}
 
开发者ID:gildaslemoal,项目名称:elpi,代码行数:30,代码来源:ServiceEcaUtil.java


注:本文中的org.ofbiz.base.component.ComponentConfig.ServiceResourceInfo方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。