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


Java JndiUtil.initJNDI方法代码示例

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


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

示例1: Spoon

import org.pentaho.di.core.JndiUtil; //导入方法依赖的package包/类
public Spoon(Display d, Repository rep) {
	this.log = LogWriter.getInstance();
	this.rep = rep;

	if (d != null) {
		display = d;
		destroy = false;
	} else {
		display = new Display();
		destroy = true;
	}

	props = PropsUI.getInstance();

	shell = new Shell(display);
	shell.setText(APPL_TITLE);
	staticSpoon = this;

	JndiUtil.initJNDI();

	SpoonFactory.setSpoonInstance(this);
}
 
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:23,代码来源:Spoon.java

示例2: Spoon

import org.pentaho.di.core.JndiUtil; //导入方法依赖的package包/类
public Spoon(Display d, Repository rep) {
super(null);  
this.addMenuBar();
   log = new LogChannel(APP_NAME);
   SpoonFactory.setSpoonInstance(this);
   setRepository(rep);
   props = PropsUI.getInstance();
   sharedObjectsFileMap = new Hashtable<String, SharedObjects>();   
   Thread uiThread= Thread.currentThread();
   
   display = Display.findDisplay(uiThread);
   
   staticSpoon = this;
   
   try {
     JndiUtil.initJNDI();
   } catch (Exception e) {
     new ErrorDialog(shell, "Unable to init simple JNDI", "Unable to init simple JNDI", e);
   }

 }
 
开发者ID:jjeb,项目名称:kettle-trunk,代码行数:22,代码来源:Spoon.java

示例3: init

import org.pentaho.di.core.JndiUtil; //导入方法依赖的package包/类
/**
	 * 初始化Ketle环境。此方法执行以下 操作:
	 * 
	 * 创建一个Kettle "home" 的目录,如果它已经不存在 - 读取 在kettle.properties文件 - 初始化记录后端 - 设置
	 * 控制台日志级别调试 - 如果指定的参数,配置 简单的JNDI - 寄存器的各种原生类型和插件 插件类型 - 读取变量列表 - 初始化生命周期
	 * 启动监听程序等
	 * 
	 * @param simpleJndi
	 *            , 真正简单的JNDI配置,否则返回false
	 * @throws KettleException
	 *             在初始化过程中发生的任何错误都将抛出 KettleException。
	 */
	public static void init(boolean simpleJndi) throws KettleException {
		if (initialized == null) {
			// 创建一个Kettle "home" 的目录
			// createKettleHome();
			// 初始化 kettle.properties 初始化其他属性等
			environmentInit();
			// 初始化日志
//			CentralLogStore.init();
//			// 设置控制台日志级用来调试
//			LogWriter.setConsoleAppenderDebug();
			// 配置简单的JNDI 仅供我们在单机模式运行
			if (simpleJndi) {
				JndiUtil.initJNDI();
			}
			// 注册原生类型和各个所需的插件
			PluginRegistry.addPluginType(StepPluginType.getInstance());
			PluginRegistry.addPluginType(PartitionerPluginType.getInstance());
			PluginRegistry.addPluginType(JobEntryPluginType.getInstance());
			PluginRegistry.addPluginType(RepositoryPluginType.getInstance());
			PluginRegistry.addPluginType(DatabasePluginType.getInstance());
			PluginRegistry.addPluginType(LifecyclePluginType.getInstance());
			PluginRegistry.addPluginType(KettleLifecyclePluginType
					.getInstance());
			PluginRegistry.addPluginType(ImportRulePluginType.getInstance());
			PluginRegistry.init();
			// 初始化读取的变量列表。
			KettleVariablesList.init();
			// 初始化生命周期监听器
			initLifecycleListeners();
			initialized = true;
		}
	}
 
开发者ID:jiangzongyao,项目名称:kettle_support_kettle8.0,代码行数:45,代码来源:KettleEnvironment.java

示例4: init

import org.pentaho.di.core.JndiUtil; //导入方法依赖的package包/类
/**
 * 初始化Ketle环境。此方法执行以下 操作:
 * 
 * 创建一个Kettle "home" 的目录,如果它已经不存在 - 读取 在kettle.properties文件 - 初始化记录后端 - 设置
 * 控制台日志级别调试 - 如果指定的参数,配置 简单的JNDI - 寄存器的各种原生类型和插件 插件类型 - 读取变量列表 - 初始化生命周期
 * 启动监听程序等
 * 
 * @param simpleJndi
 *            , 真正简单的JNDI配置,否则返回false
 * @throws KettleException
 *             在初始化过程中发生的任何错误都将抛出 KettleException。
 */
public static void init(boolean simpleJndi) throws KettleException {
	if (initialized == null) {
		// 创建一个Kettle "home" 的目录
		// createKettleHome();
		// 初始化 kettle.properties 初始化其他属性等
		environmentInit();
		// 初始化日志
		CentralLogStore.init();
		// 设置控制台日志级用来调试
		LogWriter.setConsoleAppenderDebug();
		// 配置简单的JNDI 仅供我们在单机模式运行
		if (simpleJndi) {
			JndiUtil.initJNDI();
		}
		// 注册原生类型和各个所需的插件
		PluginRegistry.addPluginType(StepPluginType.getInstance());
		PluginRegistry.addPluginType(PartitionerPluginType.getInstance());
		PluginRegistry.addPluginType(JobEntryPluginType.getInstance());
		PluginRegistry.addPluginType(RepositoryPluginType.getInstance());
		PluginRegistry.addPluginType(DatabasePluginType.getInstance());
		PluginRegistry.addPluginType(LifecyclePluginType.getInstance());
		PluginRegistry.addPluginType(KettleLifecyclePluginType
				.getInstance());
		PluginRegistry.addPluginType(ImportRulePluginType.getInstance());
		PluginRegistry.init();
		// 初始化读取的变量列表。
		KettleVariablesList.init();
		// 初始化生命周期监听器
		initLifecycleListeners();
		initialized = true;
	}
}
 
开发者ID:839536,项目名称:kettle,代码行数:45,代码来源:KettleEnvironment.java

示例5: Spoon

import org.pentaho.di.core.JndiUtil; //导入方法依赖的package包/类
public Spoon(Display d, Repository rep) {
  log = new LogChannel(APP_NAME);
  SpoonFactory.setSpoonInstance(this);
  setRepository(rep);

  if (d != null) {
    display = d;
    destroy = false;
  } else {
    display = new Display();
    destroy = true;
  }

  props = PropsUI.getInstance();

  sharedObjectsFileMap = new Hashtable<String, SharedObjects>();

  shell = new Shell(display);
  shell.setText(APPL_TITLE);
  staticSpoon = this;

  try {
    JndiUtil.initJNDI();
  } catch (Exception e) {
    new ErrorDialog(shell, "Unable to init simple JNDI", "Unable to init simple JNDI", e);
  }

}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:29,代码来源:Spoon.java

示例6: Spoon

import org.pentaho.di.core.JndiUtil; //导入方法依赖的package包/类
public Spoon(Display d, Repository rep) {
 super(null);
 
 this.addMenuBar();
 
  log = new LogChannel(APP_NAME);
  SpoonFactory.setSpoonInstance(this);
  setRepository(rep);

  props = PropsUI.getInstance();

  sharedObjectsFileMap = new Hashtable<String, SharedObjects>();

  Thread uiThread= Thread.currentThread();
  
  display = Display.findDisplay(uiThread);
  
  staticSpoon = this;

  try {
    JndiUtil.initJNDI();
  } catch (Exception e) {
    new ErrorDialog(shell, "Unable to init simple JNDI", "Unable to init simple JNDI", e);
  }

}
 
开发者ID:bsspirit,项目名称:kettle-4.4.0-stable,代码行数:27,代码来源:Spoon.java


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