我对 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;
});
}
}
如何ManagedExecutorService使用 Arquillian测试s?
慕无忌1623718
相关分类