Deployment 未在rar模块中解析bean

Deployment 未在rar模块中解析bean,deployment,jboss,cdi,weld,rar,Deployment,Jboss,Cdi,Weld,Rar,我正在使用JBossEAP6。我有一个rar部署文件,其中定义了一个jar文件。 jar文件中定义的bean类在部署期间不会解析 部署文件结构 my_rar_file.rar | |____META-INF | |_____beans.xml | |_____jboss-deployment-structure.xml | |_____my_jar_file.jar jboss-deployment-structure.xml <?xml version="1.0&

我正在使用JBossEAP6。我有一个rar部署文件,其中定义了一个jar文件。 jar文件中定义的bean类在部署期间不会解析

部署文件结构

my_rar_file.rar
|
|____META-INF
|    |_____beans.xml
|    |_____jboss-deployment-structure.xml
|
|_____my_jar_file.jar
jboss-deployment-structure.xml

<?xml version="1.0"?>
<jboss-deployment-structure xmlns="urn:jboss:deployment-structure:1.1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<deployment>
    <dependencies>
        <module name="com.subhash.api" />
        <module name="com.subhash..test"/>
    </dependencies>
</deployment>
</jboss-deployment-structure>