我正在研究使用IBM 发布的JDBC 管理数据库连接。这是一些旧东西(2001)。他们正在使用 JNDI。当我尝试实现他们的代码时:
try {
Hashtable env = new Hashtable();
env.put(
Context.INITIAL_CONTEXT_FACTORY,
"com.sun.jndi.fscontext.RefFSContextFactory");
// Create the initial context
Context ctx = new InitialContext(env);
// Here we create the actual DataSource and then set the relevant
// parameters.
TdsDataSource ds = new TdsDataSource();
ds.setServerName(serverName);
ds.setPortNumber(portNumber);
ds.setDatabaseName(databaseName);
ds.setUser(login);
ds.setPassword(password);
ds.setDescription("JDBC DataSource Connection");
// Now we bind the DataSource object to the name we selected earlier.
ctx.bind(filePath, ds);
ctx.close();
// Generic Exception handler, in practice, this would be replaced by an
// appropriate Exception handling hierarchy.
} catch (Exception ex) {
System.err.println("ERROR: " + ex.getMessage());
}
但是我发现没有“com.sun.jndi.fscontext.RefFSContextFactory”文件系统服务提供者。然后我将代码更改如下(来自Initialize Data Source Properties)。
OracleDataSource ods = new OracleDataSource();
ods.setDriverType("oci");
ods.setServerName("dlsun999");
ods.setNetworkProtocol("tcp");
ods.setDatabaseName("816");
ods.setPortNumber(1521);
ods.setUser("scott");
ods.setPassword("tiger");
Context ctx = new InitialContext();
ctx.bind("jdbc/sampledb", ods);
当我尝试执行此代码时,出现以下错误:
ERROR: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
我认为它仍在要求 Context.INITIAL_CONTEXT_FACTORY。有什么解决办法吗?我从早上开始寻找它。