尝试运行焊接时出错应用程序 - 无法初始化焊接SE容器 - 未找到任何Bean存档

时间:2016-05-17 03:59:03

标签: java gradle jboss-weld weld-se

我使用Weld SE创建一个简单的JavaSE应用程序。 我试着用gradle run运行它会引发异常:

:compileJava UP-TO-DATE
:processResources UP-TO-DATE
:classes UP-TO-DATE
:runmai 17, 2016 12:55:55 AM org.jboss.weld.bootstrap.WeldStartup <clinit>
INFO: WELD-000900: 2.3.4 (Final)
Exception in thread "main" java.lang.IllegalStateException: WELD-ENV-002009: Weld SE container cannot be initialized - no bean archives found
        at org.jboss.weld.environment.se.Weld.createDeployment(Weld.java:690)

        at org.jboss.weld.environment.se.Weld.initialize(Weld.java:570)
        at br.com.alexpfx.crawler.run.Main.main(Main.java:14)
 FAILED
1 result found for 'bean-discovery-mode'Finding with Options: Case Insensitive

y
bean-discovery-mode
1 found
Find






Replace in current buffer
Replace
Replace All
Gradle: runFile 0Project 0No Issuessrc\main\resources\META-INF\beans.xml10:1
CRLFUTF-8XML1 update

我的理解是它无法找到beans.xml文件。但它存在于src / main / resources / META-INF / beans.xml:

<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"
bean-discovery-mode="all"
        version="1.1">


</beans>

我的主要课程是:

package br.com.alexpfx.crawler.run;
import org.jboss.weld.environment.se.*;
import javax.enterprise.inject.*;
import javax.inject.*;
import br.com.alexpfx.crawler.*;
public class Main {

    @Inject
    private @Named("SuperMarket") Crawler crawler;


    public static void main(String[] args) {
        Weld weld = new Weld();
        WeldContainer container = weld.initialize();
        Main main = container.instance().select(Main.class).get();
        main.run();
        weld.shutdown();
    }


    public void run() {

        System.out.println (crawler);

    }
}

构建gradle文件是:

apply plugin: 'java'
apply plugin: 'application'



repositories{
    mavenCentral()
}


dependencies{
    // http://mvnrepository.com/artifact/org.jsoup/jsoup
    compile group: 'org.jsoup', name: 'jsoup', version: '1.9.1'

    // http://mvnrepository.com/artifact/org.jboss.weld.se/weld-se-core
    compile group: 'org.jboss.weld.se', name: 'weld-se-core', version: '2.3.4.Final'



}

sourceCompatibility = '1.8'
version = '1.0'
mainClassName = 'br.com.alexpfx.crawler.run.Main'

3 个答案:

答案 0 :(得分:6)

问题是gradle run没有为您的应用构建jar文件。它只是编译类并使用类路径上的资源目录运行主类(执行gradle --info run以便自己查看)。 Weld需要bean archive,它是包含META-INF/beans.xml的jar文件或包含WEB-INF/classes/META-INF/beans.xml的war文件。 <{1}}仅仅在类路径上是不够的。

要解决这个问题,因为您正在使用应用程序插件,只需执行beans.xml并在gradle installDist中运行shell脚本或批处理文件。

答案 1 :(得分:1)

我尝试了@drenedo提供的解决方案(对不起,我没有足够的声誉进行评论),以下代码对我来说很好用:

sourceSets.main.resources {
    exclude 'META-INF/beans.xml'
}
classes {
    doLast{
        copy {
            from('src/main/resources') { include 'META-INF/beans.xml' }
            into "$buildDir/classes/java/main/"
        }
    }
}

对于以下代码的用途,我有些困惑。由于src/main/resources/META-INF/beans.xml$buildDir/classes/main/META-INF/beans.xml不是目录,因此此代码将导致错误。所以我只是将其删除:

inputs.dir 'src/main/resources/META-INF/beans.xml'
outputs.dir "$buildDir/classes/main/META-INF/beans.xml"

该解决方案由@J回答。 Lenthe也可以和我一起正常工作。

您也可以尝试以下bean-discovery-problems-when-using-weld-se-with-gradle-application-plugin

task copyResources(type: Copy) {
    from "${projectDir}/src/main/resources"
    into "${buildDir}/classes/java/main"
}
processResources.dependsOn copyResources

四年级以上的班级使用不同的输出目录,因此请记住使用${buildDir}/classes/java/main而不是${buildDir}/classes/main

答案 2 :(得分:0)

我通过在build.gradle中添加sourceSets.main.resources解决了这个问题:

sourceSets.main.resources {
   exclude 'META-INF/beans.xml'
}
  classes {
   inputs.dir 'src/main/resources/META-INF/beans.xml'
   outputs.dir "$buildDir/classes/main/META-INF/beans.xml"
} << {
   copy {
      from('src/main/resources') { include 'META-INF/beans.xml' }
      into "$buildDir/classes/main/"
   }
}

使用给定的例子:

apply plugin: 'java'
apply plugin: 'application'



repositories{
    mavenCentral()
}


dependencies{
    // http://mvnrepository.com/artifact/org.jsoup/jsoup
    compile group: 'org.jsoup', name: 'jsoup', version: '1.9.1'

    // http://mvnrepository.com/artifact/org.jboss.weld.se/weld-se-core
    compile group: 'org.jboss.weld.se', name: 'weld-se-core', version: '2.3.4.Final'
}

sourceSets.main.resources {
   exclude 'META-INF/beans.xml'
}
  classes {
   inputs.dir 'src/main/resources/META-INF/beans.xml'
   outputs.dir "$buildDir/classes/main/META-INF/beans.xml"
} << {
   copy {
      from('src/main/resources') { include 'META-INF/beans.xml' }
      into "$buildDir/classes/main/"
   }
}

sourceCompatibility = '1.8'
version = '1.0'
mainClassName = 'br.com.alexpfx.crawler.run.Main'