我使用maven和焊接。我创建了beans.xml,但是在我启动应用程序(java应用程序)时却出现了这样的错误:
我的pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.kamczi</groupId>
<artifactId>maven-di</artifactId>
<version>0.0.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.jboss.weld.se</groupId>
<artifactId>weld-se</artifactId>
<version>2.3.2.Final</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
我的错误: 线程“主”中的异常java.lang.IllegalStateException:WELD-ENV-000016:META-INF中缺少beans.xml文件 在org.jboss.weld.environment.se.Weld.initialize(Weld.java:539) 在com.kamczi.Main.main(Main.java:10)
答案 0 :(得分:0)
我要说的问题是,您的beans.xml
位于src/test/...
下,而Weld假定src/main/...
中有一个。
如果您正在测试,则建议您使用合成Bean归档文件(如果您在SE中),或者如果在EE中,则可以利用Shrinkwrap和Arquillian使用{{1} }。