Ç×»ó ¸ðµç ejbCreate() ¸Þ¼Òµå¿¡ ´ëÇØ ÀÏÄ¡ÇÏ´Â ejbPostCreate() ¸Þ¼Òµå¸¦ ±¸ÇöÇϽʽÿÀ.
public class BeanClass implements javax.ejb.EntityBean {
public void ejbCreate () {
}
public void ejbCreate(int a){
}
public void ejbPostCreate () {
}
public void ejbPostCreate (int a) {
}
}
|
|