我正在设置一个用于测试目的的示例项目,它使用Weld SE和JUnit5,出于某种原因,在我的测试类中,在初始化weld I observ之后,由于某种原因,它的bean发现被禁用,最后,它告诉我这个错误:
org.jboss.weld.exceptions.DeploymentException: WELD-001408: Unsatisfied dependencies for type Person with qualifiers @Default;
这是我的测试类:
@EnableWeld
public class SimpleTestA {
@Inject
Person p;
@Test
public void testThatItWorks() {
System.out.println("Hey");
}
}
位于 :
projectName\core\model\src\test\java\com\aCompany\projectName\core\model\testmodel\SimpleTestA.java
这是我的beans.xml:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-
instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/beans_1_1.xsd" version="1.1" bean-discovery-mode="all" />
位于 :
projectName\core\model\src\main\resources\META-INF\beans.xml
项目结构相当简单,我只有一个名为“projectName”的主模块,它是名为“core”的子模块的父模块,其中包含我之前粘贴的所有内容。我的依赖列表是这样的:
<dependencies>
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit-jupiter.aggregator.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.weld.se</groupId>
<artifactId>weld-se-core</artifactId>
<version>${weld.se.core.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.jboss.weld/weld-junit5 -->
<dependency>
<groupId>org.jboss.weld</groupId>
<artifactId>weld-junit5</artifactId>
<version>${weld.junit5.version}</version>
<scope>test</scope>
</dependency>
那些是我的财产:
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<weld.se.core.version>3.0.1.Final</weld.se.core.version>
<weld.junit5.version>1.3.1.Final</weld.junit5.version>
<junit-jupiter.aggregator.version>5.4.0</junit-jupiter.aggregator.version>
如果我修改测试添加焊接初始化属性和显式bean发现激活,一切都很好:
@WeldSetup
WeldInitiator weldInitiator = WeldInitiator.of(WeldInitiator.createWeld().enableDiscovery());
我错过了什么?如果beans.xml存在,那么bean发现是否应该自动激活?先感谢您。
所以这里的问题是你使用Weld SE(好吧,焊接junit是),而不是你可能从WildFly等服务器上知道的Weld EE。
在SE中,默认情况下关闭发现,并使用所谓的合成存档。合成存档仅包含您自己提供的任何内容 - 类作为bean,要扫描的包等。它不扫描整个类路径。
因此,为了使您的示例有效,您可以进行发现,也可以通过Weld.addPackages()
,Weld.addClasses()
等添加所需的类和包。在Weld-junit的背景下,这转化为WeldInitiator.createWeld().addPackages()
。
Weld SE(和weld-junit)不执行整个发现的原因是因为您将有效地扫描整个类路径,包括JDK包和所有。这需要时间,最重要的是你还发现了大量不需要的豆子。或者你可以选择你不想要的拦截器/替代品。最后但并非最不重要的是,这些都是单元测试,所以最小的部署测试你的bean。