¿¹Á¦

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

¼Ö·ç¼Ç
MessageDrivenBean Ŭ·¡½º¿¡¼­ Ç×»ó ÃÖ¼Ò Çϳª ÀÌ»óÀÇ ejbCreate() ¸Þ¼Òµå¸¦ ±¸ÇöÇϽʽÿÀ.


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