本文整理汇总了Java中org.pentaho.di.core.JndiUtil类的典型用法代码示例。如果您正苦于以下问题:Java JndiUtil类的具体用法?Java JndiUtil怎么用?Java JndiUtil使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
JndiUtil类属于org.pentaho.di.core包,在下文中一共展示了JndiUtil类的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类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论