本文整理匯總了Java中org.ofbiz.service.config.model.ServiceEcas.getLocation方法的典型用法代碼示例。如果您正苦於以下問題:Java ServiceEcas.getLocation方法的具體用法?Java ServiceEcas.getLocation怎麽用?Java ServiceEcas.getLocation使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.ofbiz.service.config.model.ServiceEcas
的用法示例。
在下文中一共展示了ServiceEcas.getLocation方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: readConfig
import org.ofbiz.service.config.model.ServiceEcas; //導入方法依賴的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);
}
}
示例2: readConfig
import org.ofbiz.service.config.model.ServiceEcas; //導入方法依賴的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);
}
}