报告 EJB 中禁止的包和类。

示例:


@Stateless
public class ExampleBean {

  public void getAnotherBean() {
    ...
    java.lang.Thread.sleep(100); // 错误:bean 类中使用了非法包
  }
}