I have a web application with the following stack: JSF / PrimeFaces , EJB3 , JPA.
Is there anything wrong with the following code (the need for this kind of code is explained at the end of the post):
xhtml page:
<p:dataTable ... var="item" value="#{aController.items}"
rowKey="#{item.identityHashCode}" ...>
entity:
public int getIdentityHashCode() { return System.identityHashCode(this); }
I understand that System.identityHashCode is not guaranteed to be unique - e.g. see this SO discussion- but in practice, at least in my JVM I've found it to be.
why I think I need the above kind of code:
A p:datatable is used to display entities retrieved from the database. Naturally since these "entities" are JPA-annotated POJOs the field annotated with @Id (which JPA gets from a DB sequence) is the most likely candidate to be used as rowKey.
However I cannot use this simple pattern as there is a UI requirement that if a user wishes to create new entities, then these entities should appear in the same p:datatable with the values actually fetched. Since at that moment the new entities have not yet been persisted, they don't have an id value assigned to them by JPA. Therefore I had to either write code as the above or read the sequence myself from the database and assign it to the entities prior to their actual persistence (thus bypassing JPA not to mention being clunky).