¿¹Á¦

public class BeanClass implements javax.ejb.EntityBean {
private static Object staticField;

//other methods that must implement the interface
}

¼Ö·ç¼Ç
static Çʵ带 final·Î ¼±¾ðÇϽʽÿÀ.


public class BeanClass implements javax.ejb.EntityBean {
private static final Object staticField;

//other methods that must implement the interface
}