我遇到Arquillian和ManagedExecutorService
的问题。 Arquillian无法找到默认的ManagedExecutorService
。例外是:
Caused by: javax.naming.NameNotFoundException: No object bound to name java:comp/DefaultManagedExecutorService
我正在使用IntelliJ,并与Arquillian GlassFish Embedded 3.1
一起使用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测试ManagedExecutorService
?
答案 0 :(得分: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>