启动JUNIT测试时,创建上下文失败

时间:2011-10-23 21:58:40

标签: java java-ee junit glassfish ejb-3.0

我创建了一个从我的应用程序客户端启动的小型junit测试。 我的服务器是glassfish 3.1.1。 当我运行测试时,我收到此错误:

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

我已经在上下文中添加了这些东西,但没有任何改变。 这是我如何设置我的上下文:

@Before
    public void setUp() throws NamingException {
        Properties props = new Properties();
        System.out.println("launch");
        props.setProperty("java.naming.factory.initial",
                "com.sun.enterprise.naming.SerialInitContextFactory");

        props.setProperty("java.naming.factory.url.pkgs",
                "com.sun.enterprise.naming");

        props.setProperty("java.naming.factory.state",
                "com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl");


        // optional.  Defaults to localhost.  Only needed if web server is running
        // on a different host than the appserver   
        //props.setProperty("org.omg.CORBA.ORBInitialHost", "localhost");

        // optional.  Defaults to 3700.  Only needed if target orb port is not 3700.
        //props.setProperty("org.omg.CORBA.ORBInitialPort", "3700");
        Context annuaire = new InitialContext(props);
        GeoBeanRemote service = (GeoBeanRemote) annuaire.lookup(GeoBeanRemote.class.getName());
        BeanProvider.setGeoBean(service);
    }

app-serv.rt和gf-client被添加到我的运行测试中。

感谢。

1 个答案:

答案 0 :(得分:0)

当我的类路径中缺少jndi.properties时,我遇到了同样的问题。

<强>附录: 我觉得这里有点傻,但我不认为你可以这样设置你的初始上下文。我注意到,虽然JNDI属性甚至不需要在Glassfish上设置,所以让我感到困惑。