¿¹Á¦

public class BeanClass implements javax.ejb.EntityBean {
public void ejbCreate () {
//..
}
public void ejbCreate(int a){
//..
}

//no matching ejbPostCreate() method
//other methods that must implement the interface
}

¼Ö·ç¼Ç
Ç×»ó ¸ðµç 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) {
//..
}
//other methods that must implement the interface
}