サンプル
public static class
BeanClass
implements
javax.ejb.SessionBean {
private static final
Collection ejbFindByPrimaryKey (String key)
throws
FinderException{
//..
}
//インターフェースを実装する必要があるメソッド
}
ソリューション
ファインダー・メソッドを
public
として宣言し、
static
または
final
とはしないようにします。
public class
BeanClass
implements
javax.ejb.SessionBean {
public
Collection ejbFindByPrimaryKey (String key)
throws
FinderException{
//..
}
//インターフェースを実装する必要があるメソッド
}