how to set the relationship between tables in ejb
Answer / ch.n.v.ganesh
First, relationships are maintained through foreign
keys, but you do not define foreign keys as conventional
EJB variables; they are generated and maintained by the
container.
Second, relationships generate additional methods on the
local interfaces of the EJBs involved. Consequently, you
will need to work with the Home interfaces for beans
through JNDI, rather than using factory classes as you
might for accessing them through their Remote
interfaces.
Finally, Container Managed Relationship (cmr) fields
may be used in EJB QL queries, just like conventional
fields, but only for EJBs within the same jar file.
| Is This Answer Correct ? | 0 Yes | 0 No |
Transaction Attributes? What is the use of ?RequiresNew?
What is the advantage of using entity bean for database operations, over directly using jdbc api to do database operations? When would I use one over the other?
what are the influence factors of ejbLoad() & ejbStore()?
What happens when I change a value in the httpsession from inside an ejb?
how can u integrate ejb and hibernate? How can u call hibernateDAO methods in session bean?
What is ejb bean in java?
What are the attributes of transaction in ejb?
in EJB diclare the static methods are not?
What are stateless applications?
How ejb invocation happens?
An EJB client, can marshall an object of the class java.lang.Class to an EJB?
What is the meaning of acid in the connection of transaction management?