¿¹Á¦

public class BeanClass implements javax.ejb.EntityBean {
public void ejbPostCreate () {
//empty body
}
//other methods that must implement the interface
}

¼Ö·ç¼Ç
Ç×»ó ÃÖ¼Ò Çϳª ÀÌ»óÀÇ ejbPostCreate() ¸Þ¼Òµå¸¦ ±¸ÇöÇϽʽÿÀ.


public class BeanClass implements javax.ejb.EntityBean {
public void ejbPostCreate () {
//non-empty body
}
//other methods that must implement the interface
}