¿¹Á¦

public static class BeanClass implements javax.ejb.SessionBean {
private static final void ejbCreate () {
//..
}
//methods that must implement the interface
}

¼Ö·ç¼Ç
ejbCreate() ¸Þ¼Òµå¸¦ public ¹× static ¶Ç´Â finalÀÌ ¾Æ´Ñ Çü½ÄÀ¸·Î ¼±¾ðÇϽʽÿÀ.


public class BeanClass implements javax.ejb.SessionBean {
public void ejbCreate () {
//..
}
//methods that must implement the interface
}