I'm designing a client/server application that uses JPA and RMI.
On the server I bind in the rmiregistry a DAOFactory remote object used by clients to obtain remote references to dao objects that...
Type: Posts; User: kux; Keyword(s):
I'm designing a client/server application that uses JPA and RMI.
On the server I bind in the rmiregistry a DAOFactory remote object used by clients to obtain remote references to dao objects that...
Ok, here is may problem...
Take the @ManyToMany example form jee5 javadoc:
In Customer class:
@ManyToMany
@JoinTable(name="CUST_PHONES")
public Set getPhones() { return...