错误第一行:TestEntMod.jar.
错误第七行:TestEntMod.jar.jar

解决方案 »

  1.   

    'META-INF/ejb-jar.xml' 文件配置错误
    其中元素container-transaction没有设置,它主要设置哪些方法使用什么事务属性,例如:
     <assembly-descriptor>
      <container-transaction>
       <method>
        <ejb-name>Product</ejb-name>
        <method-intf>Remote</method-intf>
        <method-name>*</method-name>
       </method>
       <trans-attribute>Required</trans-attribute>
      </container-transaction>
     </assembly-descriptor>Product实体Bean远程接口的所有方法都使用Required事务属性
      

  2.   

    F:/JBuilder/EJB/TestEntPro/TestEntMod.jar.jar
    以上就是很明确的错误了,打包出错误。
    建议你把CLASS全部删除再从新打包过