サンプル
public static class
BeanClass
implements
javax.ejb.SessionBean {
private static final
Collection ejbFindByPrimaryKey (String key)
throws
FinderException{
//..
}
//インターフェースを実装する必要のあるメソッド
}
解決策
ファインダー・メソッドは、
static
または
final
ではなく
public
として宣言してください。
public class
BeanClass
implements
javax.ejb.SessionBean {
public
Collection ejbFindByPrimaryKey (String key)
throws
FinderException{
//..
}
//インターフェースを実装する必要のあるメソッド
}