0

テスト用にEvenementBeanという名前のEJB2を作成しました。その後、削除しました。.earプロジェクトを今すぐデプロイしようとすると、次のエラーが発生します。

    WARN [verifier] EJB sepc violation:
    Bean: Evenement
    Section: 22.2
    Warning: The Bean Provider must specify the fully-qualified name of the Java class 
    that implements the enterprise bean's business methods in the <ejb-class> element.

    Info : class not found on 'com.afb.iard.sina.evenement.EvenementBean' : No 
    ClassLoaders found for : com.afb.iard.sina.evenement.EvenementBean.

    Could not create deployment: File:/E:/DIR1/jboss-4.2.1.GA/server/ABrain/tmp/deploy
    /tmp...
    org.jboss.deployment.DeploymentException: Verification of Enterprise Beans failed, 
    see above.

私はjboss-ide1.6を使用しています。そして、私はすでにIDEを数回再起動しましたが成功しませんでした。

4

2 に答える 2

1

デプロイメント記述子の1つにあるものが古くなっていると思われるため、JBossは.class削除したBeanのファイルをロードしようとしています。

于 2009-10-07T15:05:13.683 に答える
0

ejb記述子の参照エントリも削除する必要があるようです(ejb-jar.xmlだと思います)

于 2009-10-07T15:06:17.410 に答える