Quartz アプリケーション内で CDI-SE コンテキストを初期化しようとしているため、次の依存関係 (maven) があります。
<dependency>
<groupId>org.jboss.weld.se</groupId>
<artifactId>weld-se-core</artifactId>
<version>2.3.4.Final</version>
</dependency>
JobQuartz 内には、次のメソッド execute() があります。
public void execute(JobExecutionContext context) throws JobExecutionException {
Weld weld = new Weld();
WeldContainer container = weld.initialize();
service = container.instance().select(MyService.class).get();
service.go();
weld.shutdown();
}
しかし、次のエラーが発生しました。
Caused by: java.lang.IllegalStateException: WELD-ENV-002009: Weld SE container cannot be initialized - no bean archives found
私のプロジェクトはWARなので、beans.xmlファイルを中/src/main/webapp/META-INF/
に入れて、内容を見てください:
<?xml version="1.0"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/beans_1_1.xsd"
version="1.2" bean-discovery-mode="all">
</beans>
ファイルを にコピーしました/src/main/resource/META-INF
が、同じエラーが発生しました。