0

我正在研究使用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。有什么解决办法吗?我从早上开始寻找它。

4

2 回答 2

1

在创建对象之前尝试包含以下行InitialContext。它应该可以解决问题。

System.setProperty(Context.INITIAL_CONTEXT_FACTORY, "org.apache.naming.java.javaURLContextFactory");
System.setProperty(Context.URL_PKG_PREFIXES, "org.apache.naming");  

这基本上告诉System您使用哪个初始上下文库来存储数据源上下文。

于 2013-06-20T20:06:33.150 回答
0

如果您可以发布 StactTrace 或有关运行此代码的容器/服务器的任何详细信息,将会很有帮助。

DataSource 对象和 JNDI 上下文是两种不同的资源,尽管它们一起使用。JNDI是一个存储库,可以保存由名称等路径标识的对象。DataSource是一个包含使用 JDBC 建立数据库连接的信息的对象。为了提供对 DataSource 的系统范围的访问,它的对象将使用一个键绑定到 JNDI,以便可以在系统内全局查找它。

似乎您的问题与 JNDI 提供程序库有关。您不需要为此更改 DataSource 实现库(从TdsDataSourceOracleDataSource)。

可能这个细节可以帮助您或发布更多详细信息以了解您的运行时环境。

于 2013-06-20T17:25:59.590 回答