本文整理汇总了Java中org.kuali.rice.ksb.messaging.resourceloader.KSBResourceLoaderFactory类的典型用法代码示例。如果您正苦于以下问题:Java KSBResourceLoaderFactory类的具体用法?Java KSBResourceLoaderFactory怎么用?Java KSBResourceLoaderFactory使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
KSBResourceLoaderFactory类属于org.kuali.rice.ksb.messaging.resourceloader包,在下文中一共展示了KSBResourceLoaderFactory类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createKSBResourceLoaderNoApplicationIdImpl
import org.kuali.rice.ksb.messaging.resourceloader.KSBResourceLoaderFactory; //导入依赖的package包/类
protected void createKSBResourceLoaderNoApplicationIdImpl(String configType) throws Exception {
Properties props = new Properties();
Config config = getConfigObject(configType,props);
config.parseConfig();
ConfigContext.init(config);
boolean errorThrown = false;
try {
KSBResourceLoaderFactory.createRootKSBRemoteResourceLoader();
fail("should have thrown configuration exception with no applicationId present");
} catch (IllegalStateException ce) {
errorThrown = true;
}
assertTrue(errorThrown);
}
示例2: createKSBResourceLoaderImpl
import org.kuali.rice.ksb.messaging.resourceloader.KSBResourceLoaderFactory; //导入依赖的package包/类
protected void createKSBResourceLoaderImpl(String configType) throws Exception {
String me = "TestME";
Properties props = new Properties();
props.put(CoreConstants.Config.APPLICATION_ID, me);
Config config = getConfigObject(configType, props);
config.parseConfig();
ConfigContext.init(config);
ResourceLoader rl = KSBResourceLoaderFactory.createRootKSBRemoteResourceLoader();
assertNotNull(rl.getResourceLoader(KSBResourceLoaderFactory.getRemoteResourceLoaderName()));
}
示例3: getResourceLoadersToRegister
import org.kuali.rice.ksb.messaging.resourceloader.KSBResourceLoaderFactory; //导入依赖的package包/类
@Override
public Collection<ResourceLoader> getResourceLoadersToRegister() throws Exception {
ResourceLoader ksbRemoteResourceLoader = KSBResourceLoaderFactory.createRootKSBRemoteResourceLoader();
ksbRemoteResourceLoader.start();
return Collections.singletonList(ksbRemoteResourceLoader);
}
示例4: getResourceLoadersToRegister
import org.kuali.rice.ksb.messaging.resourceloader.KSBResourceLoaderFactory; //导入依赖的package包/类
@Override
public Collection<ResourceLoader> getResourceLoadersToRegister() throws Exception{
ResourceLoader ksbRemoteResourceLoader = KSBResourceLoaderFactory.createRootKSBRemoteResourceLoader();
ksbRemoteResourceLoader.start();
return Collections.singletonList(ksbRemoteResourceLoader);
}