static フィールドに書き込んでいる EJB クラスを報告します。

例:


@Stateless
public class ExampleBean {
  private static int counter = 0;
  private AnotherBean anotherBean;

  public void setAnotherBean(AnotherBean anotherBean) {
    this.anotherBean = anotherBean;
    counter++; // エラー: ここではどの static フィールドにも書き込むべきではありません
  }
}