大家好!都知道EJB中有这么一段注释
/**
 * 主要功能: 进行表外业务的处理
 * 
 *           display-name="OutAccountBusinessManager"
 *           local-jndi-name="OutAccountBusinessManagerLocal" type="Stateless"
 *           transaction-type="Container" view-type="local"
 * @ejb.home local-extends="javax.ejb.EJBLocalHome"
 *           local-class="com.amerisia.ebills.business.commons.apix.OutAccountBusinessManagerLocalHome"
 * @ejb.interface local-extends="javax.ejb.EJBLocalObject"
 *                local-class="com.amerisia.ebills.business.commons.apix.OutAccountBusinessManagerLocal"
 * @ejb.transaction type="Required"
 */想问问 ejb.home local-extends 这个实现接口 javax.ejb.EJBLocalHome 可以改成自己的类吗?
1.如果改成自己的EbsServer接口,然后让EbsServer继承EJBLocalHome 用蚂蚁编译失败,报找不到标识
2.如果自己的及EbsServer接口,接口不继承EJBLocalHome,用weblogic部署ejb失败!求救.....