I'd like some feedback on the JPA usage in multiple (more than 3) table cases.
How do you retreive records from several joined tables? Using JPA Join statement , or by retrieving the Collections and iterating and fetching the next set of foreign keyed collections and so on? The second way seems to be a preferred way, but a real pain and also inefficient.
The way eclipselink is generating relationships is that there are loads of cascades going on. On top of that even a simple foreign key is set as an obect not as a simple integer id. In other words to extract an X.fk_of_table_Y I need to call two methods
X.getFKTableY().getFKtableY()
The first function returns an object of the mapped class, and the second one returns the integer. Oops isn't that too inefficient? Why would you need to load up the object from another table when you just want an id of my own table?
How do you go about it?
Do you prefer to use the methods generated by eclipselink or do you usually code your own? It's basically the same thing as (1) jsut that this one I ask for the eclipselink context .
What tools exist besides EclipseLink to generate the code? In case if I can use my own JPA join queries for relationships (and if that is a good way to do it), I'd like the relationship mapping to be removed from the entity files which EclipseLink won't do. Is there a tool that only generates entity classes but not their relationships?
If I wish to automate entity generation on a nightly basis (or whenever db changes), via Eclipselink, what would I have to do? Modify source?
Forgive my English,I can write a bit better.