6
JBOSS 7.1.1でモジュールを除外しようとしていますが、JBOSSはjboss-deployment-structure.xmlを無視しているようです。JBOSS 7.1.1のEARモジュールを除外
私はこれを私のEARのMETA-INFに入れました。設定ファイルの例を次に示します。
<?xml version="1.0" encoding="UTF-8"?>
<jboss-deployment-structure>
<deployment>
<exclusions>
<module name="java.xml.bind.api" /> <!- still see it there -->
<module name="somerandomname" /> <!- does not even complain when this doesn't exist -->
</exclusions>
</deployment>
</jboss-deployment-structure>
あなたが保存されて私の人生! – thiagoh