I found in ex12_1
the com.titan.customer.CustomerBean.java have a public abstract AddressLocal getHomeAddress();
I do not see any implementation of it , does the jboss server automatically generate the body for this method, if so how did jboss figure out this method should be generated, I don’t any reference in the jboss.xml file.
Thanks
Ivan
Customer is a CMP bean. You'll see in ejb-jar.xml that cmp-fields are defined. This abstract method corresponds to a cmp-field.
At deployment time, JBoss automatically generates an implementation of your CMP bean.