gpt4 book ai didi

java - 什么是 Arquillian 资源?

转载 作者:行者123 更新时间:2023-11-30 08:00:00 24 4
gpt4 key购买 nike

@ArquillianResource 的用例是什么?我可以注入(inject)任意对象吗?他们需要在 CDI 下注册吗?

@ArquillianResource
URI uri

最佳答案

@ArquillianResource 注释 JavaDoc 给出了很好的概述

Arquillian has support for multiple injection points like @EJB, @Resources and @Inject, but there are also non standard component model objects available within the Arquillian runtime that can be of useful during testing.

Arquillian can expose these objects to the test case using the @ArquillianResource injection annotation.

查看 arquillian-extension-producer GitHub repository ,其中给出了使用 ArquillianResourceTestEnricher 在 Arquillian 中实现类 CDI 行为的示例。

ArquillianResource 的典型用例之一是当您想要注入(inject)自定义类型时。然后步骤如下:

  1. 实现 ResourceProvider,它说明了哪些类型能够提供以及如何创建/查找所提供的实例 - sample here
  2. 在新的 Arquillian 扩展中注册提供者 - sample here
  3. 使用服务加载器注册新的 Arquillian 扩展 - LoadableExtension SPI - sample here

关于java - 什么是 Arquillian 资源?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38852158/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com