当前位置: 首页 > 知识库问答 >
问题:

JBOSS eJB-客户端示例:线程"main"javax.naming.NoSynalContextExctive中的异常:

左丘积厚
2023-03-14

我试图在日食中运行下面的示例一段时间。

https://github.com/jboss-developer/jboss-eap-quickstarts/tree/master/ejb-remote

我已经创建了一个ejb项目,并导入了所有的类文件并将其放入。属性文件。现在代码中没有错误,EJB已成功部署到JBoss服务器上。当我尝试运行RemoteEJBClient时。java,我遇到了以下异常,我无法修复。

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 org.jboss.as.quickstarts.ejb.remote.client.RemoteEJBClient.lookupRemoteStatelessCalculator(RemoteEJBClient.java:131)
    at org.jboss.as.quickstarts.ejb.remote.client.RemoteEJBClient.invokeStatelessBean(RemoteEJBClient.java:50)
    at org.jboss.as.quickstarts.ejb.remote.client.RemoteEJBClient.main(RemoteEJBClient.java:37)

请帮我解决这个问题

主独立类:

/*
 * JBoss, Home of Professional Open Source
 * Copyright 2013, Red Hat, Inc. and/or its affiliates, and individual
 * contributors by the @authors tag. See the copyright.txt in the
 * distribution for a full listing of individual contributors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * http://www.apache.org/licenses/LICENSE-2.0
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.jboss.as.quickstarts.ejb.remote.client;

import org.jboss.as.quickstarts.ejb.remote.stateful.RemoteCounter;
import org.jboss.as.quickstarts.ejb.remote.stateless.RemoteCalculator;

import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import java.util.Hashtable;

/**
 * A sample program which acts a remote client for a EJB deployed on AS7 server.
 * This program shows how to lookup stateful and stateless beans via JNDI and
 * then invoke on them
 * 
 * @author Jaikiran Pai
 */
public class RemoteEJBClient {

    public static void main(String[] args) throws Exception {
        // Invoke a stateless bean
        invokeStatelessBean();

        // Invoke a stateful bean
        // invokeStatefulBean();
    }

    /**
     * Looks up a stateless bean and invokes on it
     * 
     * @throws NamingException
     */
    private static void invokeStatelessBean() throws NamingException {
        // Let's lookup the remote stateless calculator
        final RemoteCalculator statelessRemoteCalculator = lookupRemoteStatelessCalculator();
        System.out
                .println("Obtained a remote stateless calculator for invocation");
        // invoke on the remote calculator
        int a = 204;
        int b = 340;
        System.out
                .println("Adding "
                        + a
                        + " and "
                        + b
                        + " via the remote stateless calculator deployed on the server");
        int sum = statelessRemoteCalculator.add(a, b);
        System.out.println("Remote calculator returned sum = " + sum);
        if (sum != a + b) {
            throw new RuntimeException(
                    "Remote stateless calculator returned an incorrect sum "
                            + sum + " ,expected sum was " + (a + b));
        }
        // try one more invocation, this time for subtraction
        int num1 = 3434;
        int num2 = 2332;
        System.out
                .println("Subtracting "
                        + num2
                        + " from "
                        + num1
                        + " via the remote stateless calculator deployed on the server");
        int difference = statelessRemoteCalculator.subtract(num1, num2);
        System.out.println("Remote calculator returned difference = "
                + difference);
        if (difference != num1 - num2) {
            throw new RuntimeException(
                    "Remote stateless calculator returned an incorrect difference "
                            + difference + " ,expected difference was "
                            + (num1 - num2));
        }
    }

    /**
     * Looks up a stateful bean and invokes on it
     * 
     * @throws NamingException
     */
    private static void invokeStatefulBean() throws NamingException {
        // Let's lookup the remote stateful counter
        final RemoteCounter statefulRemoteCounter = lookupRemoteStatefulCounter();
        System.out.println("Obtained a remote stateful counter for invocation");
        // invoke on the remote counter bean
        final int NUM_TIMES = 5;
        System.out.println("Counter will now be incremented " + NUM_TIMES
                + " times");
        for (int i = 0; i < NUM_TIMES; i++) {
            System.out.println("Incrementing counter");
            statefulRemoteCounter.increment();
            System.out.println("Count after increment is "
                    + statefulRemoteCounter.getCount());
        }
        // now decrementing
        System.out.println("Counter will now be decremented " + NUM_TIMES
                + " times");
        for (int i = NUM_TIMES; i > 0; i--) {
            System.out.println("Decrementing counter");
            statefulRemoteCounter.decrement();
            System.out.println("Count after decrement is "
                    + statefulRemoteCounter.getCount());
        }
    }

    /**
     * Looks up and returns the proxy to remote stateless calculator bean
     * 
     * @return
     * @throws NamingException
     */
    private static RemoteCalculator lookupRemoteStatelessCalculator()
            throws NamingException {
        final Hashtable jndiProperties = new Hashtable();
        jndiProperties.put(Context.URL_PKG_PREFIXES,
                "org.jboss.ejb.client.naming");

        /*
         * remote.connectionprovider.create.options.org.xnio.Options.SSL_ENABLED=
         * false
         * 
         * remote.connections=default
         * 
         * remote.connection.default.host=localhost
         * remote.connection.default.port = 4447
         * remote.connection.default.connect
         * .options.org.xnio.Options.SASL_POLICY_NOANONYMOUS=false
         */
        jndiProperties
                .put("remote.connectionprovider.create.options.org.xnio.Options.SSL_ENABLED",
                        false);
        jndiProperties.put("remote.connections", "default");
        jndiProperties.put("remote.connection.default.host", "localhost");
        jndiProperties.put("remote.connection.default.port", "4447");
        jndiProperties.put("remote.connection.default.connect.options.org.xnio.Options.SASL_POLICY_NOANONYMOUS",false);

        final Context context = new InitialContext(jndiProperties);

        // The JNDI lookup name for a stateless session bean has the syntax of:
        // ejb:<appName>/<moduleName>/<distinctName>/<beanName>!<viewClassName>
        //
        // <appName> The application name is the name of the EAR that the EJB is
        // deployed in
        // (without the .ear). If the EJB JAR is not deployed in an EAR then
        // this is
        // blank. The app name can also be specified in the EAR's
        // application.xml
        //
        // <moduleName> By the default the module name is the name of the EJB
        // JAR file (without the
        // .jar suffix). The module name might be overridden in the ejb-jar.xml
        //
        // <distinctName> : AS7 allows each deployment to have an (optional)
        // distinct name.
        // This example does not use this so leave it blank.
        //
        // <beanName> : The name of the session been to be invoked.
        //
        // <viewClassName>: The fully qualified classname of the remote
        // interface. Must include
        // the whole package name.

        // let's do the lookup
        return (RemoteCalculator) context
                .lookup("java:global/ejb-remote/CalculatorBean!org.jboss.as.quickstarts.ejb.remote.stateless.RemoteCalculator");
    }

    /**
     * Looks up and returns the proxy to remote stateful counter bean
     * 
     * @return
     * @throws NamingException
     */
    private static RemoteCounter lookupRemoteStatefulCounter()
            throws NamingException {
        final Hashtable jndiProperties = new Hashtable();
        jndiProperties.put(Context.URL_PKG_PREFIXES,
                "org.jboss.ejb.client.naming");
        final Context context = new InitialContext(jndiProperties);

        // The JNDI lookup name for a stateful session bean has the syntax of:
        // ejb:<appName>/<moduleName>/<distinctName>/<beanName>!<viewClassName>?stateful
        //
        // <appName> The application name is the name of the EAR that the EJB is
        // deployed in
        // (without the .ear). If the EJB JAR is not deployed in an EAR then
        // this is
        // blank. The app name can also be specified in the EAR's
        // application.xml
        //
        // <moduleName> By the default the module name is the name of the EJB
        // JAR file (without the
        // .jar suffix). The module name might be overridden in the ejb-jar.xml
        //
        // <distinctName> : AS7 allows each deployment to have an (optional)
        // distinct name.
        // This example does not use this so leave it blank.
        //
        // <beanName> : The name of the session been to be invoked.
        //
        // <viewClassName>: The fully qualified classname of the remote
        // interface. Must include
        // the whole package name.

        // let's do the lookup
        return (RemoteCounter) context
                .lookup("ejb:/jboss-ejb-remote-server-side/CounterBean!"
                        + RemoteCounter.class.getName() + "?stateful");
    }
}

jboss-ejb-client.properties

#
# JBoss, Home of Professional Open Source
# Copyright 2013, Red Hat, Inc. and/or its affiliates, and individual
# contributors by the @authors tag. See the copyright.txt in the
# distribution for a full listing of individual contributors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

remote.connectionprovider.create.options.org.xnio.Options.SSL_ENABLED=false

remote.connections=default

remote.connection.default.host=localhost
remote.connection.default.port = 4447
remote.connection.default.connect.options.org.xnio.Options.SASL_POLICY_NOANONYMOUS=false

运行pom.xml,也充满了错误。这可能是说jboss提供的pom.xml也不会工作

[错误]无法解析的导入POM:找不到组织。jboss。规范:jboss-javaee-6.0:pom:3.0.2。决赛-红帽-4英寸http://repo.maven.apache.org/maven2已缓存在本地存储库中,在经过central的更新间隔或在第72行第22列强制更新之前,不会重新尝试解析-

共有1个答案

梁祯
2023-03-14

您的EJB客户机是java独立的,因此,为了连接到JNDI服务并查找EJB引用,您需要为InitialContext对象提供一些配置。

异常告诉您未提供此配置,因此无法创建初始上下文实例。

在这里,您可以看到(一般而言)如何设置InitialConText属性。请记住,此配置取决于供应商。

通过搜索教程,我可以看到一个文件,其中似乎包含适合本教程的属性。我似乎觉得这个文件对RemoteEJBClient不可用。java类。

 类似资料:
  • 我在eclipse中有一个javafx项目准备运行。我有一个客户端和一个服务器。我试图在eclipse中运行服务器和客户端,一切都很好,但是当我导出到可运行的jars时,一个到服务器,一个到客户端,服务器jar工作正常,但是客户端抛出异常:线程“main”中的异常java.lang.reflect.InvocationTargetExctive 虽然它在eclipse中导出之前工作正常。服务器和客

  • 问题内容: 我将Apache的HttpClient组件用于以下简单程序,并且看到以下异常: 我在用 Httpclient-4.3.3.jar Httpcore-4.3.2.jar 有任何想法吗? 问题答案: 此代码有效…没有任何错误..如果您使用的是类似import,请检查软件包。

  • 我将Apache中的HttpClient组件用于以下简单程序,并看到以下异常: 我在用 null

  • 我使用Apache中的HttpClient组件来执行以下简单的程序,并看到以下异常: 我正在使用 httpclient-4.3.3.jar httpcore-4.3.2.jar 有什么想法吗?

  • 问题内容: 每当我运行此命令时,该函数就可以正常使用。当我选择洞穴时,消息会每隔2秒弹出一次,然后当它越过该部分时,就会出现错误: 我已经尝试过和,并且在该方法中使用时,出现了很多错误。当我在方法中使用时,它不接受我的输入。 当我在该方法中使用时,它不接受我的字符串输入,而直接进入另一个游戏,但是布尔值返回并且它无限地发送垃圾邮件“ Which Cave …”。 我已经阅读了错误报告,以及类似问题

  • 问题内容: 我正在开发一个访问数据库的项目,但是我遇到了一些问题。我尝试使用hibernate3.2和4.52,但是它不起作用。 例外是在这行代码中 问题答案: 您需要在类路径中检查类org.apache.log4j.Level的冲突版本并进行解决。版本1.2.12或更高版本的log4j jar中提供了TRACE级别。