EJB5111 ejb [{0}]的Bean类没有定义与[{1}]接口方法[{2}]对应的方法
尽管我在LocalHome和bean类中有正确的方法,但我得到了这个错误。当地家庭的那个:
ProductLocal create(ProductDTO p) throws CreateException
bean类中的一个:
public java.lang.Long ejbCreate(ProductDTO p) throws CreateException {
//retrieve data from database and let the setter create a new row
}
项目在客户端没有崩溃的情况下运行。数据已传输到服务器,但无法进入create方法。
我不明白。