我正在设置一个示例项目用于测试目的,它使用 Weld SE 和 JUnit5,出于某种原因,在我的测试类中,在初始化焊接后,我观察到,由于某种原因,它的 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 发现不应该自动激活吗?先感谢您。