¿¹Á¦

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

¼Ö·ç¼Ç
ejbCreate()¿¡ ¸Å°³º¯¼ö°¡ ¾øµµ·Ï ÇϽʽÿÀ.


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