how to generate deployment descriptor using ejbGen for weblogic?
问题 I was reading the tutorial on this page: http://edocs.bea.com/docs/cd/E13222_01/wls/docs81/medrec_tutorials/ejbgen.html#858279 And I have the following file BankAccountEJB.java import javax.ejb.CreateException; import javax.ejb.EntityBean; import javax.ejb.EntityContext; public abstract class BankAccountEJB implements EntityBean { private EntityContext context; public void setEntityContext(EntityContext aContext) { context = aContext; } public void ejbActivate() { } public void ejbPassivate()