如何解决JBoss Remote错误?

时间:2014-09-01 12:46:12

标签: java junit jboss compiler-errors

我试图在JUnit中运行JBoss远程并且我收到错误:

  

引起:java.lang.VerifyError:无法从最终类继承

以下是带有Remote的JUnit类的一部分:

import static org.junit.Assert.*;
import java.util.Properties;
import javax.naming.Context;
import javax.naming.InitialContext;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;

import com.SessionManager;

public class Test1 {

    private static SessionManager _service;

    @BeforeClass
    public static void doSms() throws Exception {
        String JBOSS_CONTEXT = "org.jboss.naming.remote.client.InitialContextFactory";
        Properties properties = new Properties();
        properties.put(Context.INITIAL_CONTEXT_FACTORY, JBOSS_CONTEXT);
        properties.put(Context.PROVIDER_URL, "remote://localhost:4447");
        properties.put(Context.SECURITY_PRINCIPAL, "testuser");
        properties.put(Context.SECURITY_CREDENTIALS, "testpassword");
        _service = (SessionManager) new InitialContext(properties).lookup("java:global/SessionManager");
    }
}

1 个答案:

答案 0 :(得分:0)

此错误不属于 JUnit中的JBoss Remote

检查放在班级路径中的所有必需的jar。

避免在同一个jar和两个版本之间发生冲突(不要添加两个不同版本的jar)。