找不到ManagedExecutorService

问题描述 投票:1回答:1

我有Arquillian和ManagedExecutorServices的问题。 Arquillian无法找到默认的ManagedExecutorService。例外情况是:

Caused by: javax.naming.NameNotFoundException: No object bound to name java:comp/DefaultManagedExecutorService

我正在使用IntelliJ并使用GlassFish Embedded 3.1与Arquillian 1.4.0.Final执行测试。

这是我的单元测试:

@Slf4j
@RunWith(Arquillian.class)
public class WorkhorseTest {

    @Inject
    private Workhorse workhorse;

    @Deployment
    public static WebArchive createDeployment() {
        return ShrinkWrap.create(WebArchive.class)
                .addClass(Workhorse.class)
                .addAsWebInfResource(EmptyAsset.INSTANCE, "beans.xml");
    }

    @Test
    public void testExecution() throws Exception {
        final Future<Integer> result = workhorse.execute();
        result.get(1, TimeUnit.MINUTES);
        log.info("Executed...");
    }
}

这是EJB:

@Slf4j
@Singleton
public class Workhorse {

    @Resource
    private ManagedExecutorService mes;

    public Future<Integer> execute() {
        return mes.submit(() -> {
            log.info("Hello from a Runnable");
            return 5;
        });
    }


}

如何用Arquillian测试ManagedExecutorServices?

java java-ee executorservice jboss-arquillian
1个回答
1
投票

我通过在pom.xml中切换依赖来解决它:

旧:

<dependency>
    <groupId>org.glassfish.main.extras</groupId>
    <artifactId>glassfish-embedded-web</artifactId>
    <version>5.0</version>
    <scope>provided</scope>
</dependency>

新:

<dependency>
    <groupId>org.glassfish.main.extras</groupId>
    <artifactId>glassfish-embedded-all</artifactId>
    <version>5.0</version>
    <scope>provided</scope>
</dependency>
© www.soinside.com 2019 - 2024. All rights reserved.