javax.nameing.NoInitialContextException - Java

2022-09-03 13:33:27

这是我的代码:

import javax.naming.InitialContext;
import javax.jms.Queue;
import javax.jms.Session;
import javax.jms.TextMessage;
import javax.jms.QueueSender;
import javax.jms.DeliveryMode;
import javax.jms.QueueSession;
import javax.jms.QueueConnection;
import javax.jms.QueueConnectionFactory;

public class Sender
{
    public static void main(String[] args) throws Exception
    {
        // get the initial context
        InitialContext ctx = new InitialContext();

        // lookup the queue object
        Queue queue = (Queue) ctx.lookup("queue/queue0");

        // lookup the queue connection factory
        QueueConnectionFactory connFactory = (QueueConnectionFactory) ctx.
           lookup("queue/connectionFactory");

        // create a queue connection
        QueueConnection queueConn = connFactory.createQueueConnection();

        // create a queue session
        QueueSession queueSession = queueConn.createQueueSession(false,Session.DUPS_OK_ACKNOWLEDGE);

        // create a queue sender
        QueueSender queueSender = queueSession.createSender(queue);
        queueSender.setDeliveryMode(DeliveryMode.NON_PERSISTENT);

        // create a simple message to say "Hello"
        TextMessage message = queueSession.createTextMessage("Hello");

        // send the message
        queueSender.send(message);

        // print what we did
        System.out.println("sent: " + message.getText());

        // close the queue connection
        queueConn.close();
    }
}

Eclipse在上面的代码中没有报告任何错误 - 我能够成功编译。但是,当我尝试运行它时,我得到以下异常:

Exception in thread "main" javax.naming.NoInitialContextException: 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
  at javax.naming.spi.NamingManager.getInitialContext(Unknown Source)
  at javax.naming.InitialContext.getDefaultInitCtx(Unknown Source)
  at javax.naming.InitialContext.getURLOrDefaultInitCtx(Unknown Source)
  at javax.naming.InitialContext.lookup(Unknown Source)
  at Sender.main(Sender.java:21)

任何人都可以帮我修复这个错误吗?我尝试修复了几个小时,但仍然无法弄清楚。


答案 1

我们需要指定 JNDI 的INITIAL_CONTEXT_FACTORY、PROVIDER_URL、用户名、密码等,以创建 .InitialContext

在独立应用程序中,您可以按如下方式指定

Hashtable env = new Hashtable();
env.put(Context.INITIAL_CONTEXT_FACTORY, 
    "com.sun.jndi.ldap.LdapCtxFactory");
env.put(Context.PROVIDER_URL, "ldap://ldap.wiz.com:389");
env.put(Context.SECURITY_PRINCIPAL, "joeuser");
env.put(Context.SECURITY_CREDENTIALS, "joepassword");

Context ctx = new InitialContext(env);

但是,如果您在 Java EE 容器中运行代码,则这些值将由容器获取并用于创建如下所示的InitialContext

System.getProperty(Context.PROVIDER_URL);

这些值将在启动容器时设置为 JVM 参数。因此,如果您在容器中运行代码,则以下内容将起作用

InitialContext ctx = new InitialContext();

答案 2

如果在 EJB 客户机库上工作:

您需要提及获取初始上下文的参数。

InitialContext ctx = new InitialContext();

如果不这样做,它将在项目文件夹中查找属性文件。此外,还可以在类文件本身中包含属性凭据或值,如下所示:

Properties props = new Properties();
props.put(Context.INITIAL_CONTEXT_FACTORY, "org.jnp.interfaces.NamingContextFactory");
props.put(Context.URL_PKG_PREFIXES, "org.jboss.ejb.client.naming");
props.put(Context.PROVIDER_URL, "jnp://localhost:1099");

InitialContext ctx = new InitialContext(props);

URL_PKG_PREFIXES:保存环境属性名称的常量,用于指定在 URL 上下文工厂中加载时要使用的包前缀列表。

EJB 客户机库是调用远程 EJB 组件的主库。
此库可以通过 InitialContext 使用。为了调用 EJB 组件,该库通过 URL 上下文工厂创建一个 EJB 客户机上下文。唯一必要的配置是解析 java.nameing.factory.url.pkgs 属性的值 org.jboss.ejb.client.name,以实例化 InitialContext。