Search Results

1
vote

Java Persistence: Cast to something the result of Query.getResultList() ?

Well there is the java Collections class solution, but you didn't explain how your casting was failing, or if it was just giving a warning... This is one way to validate this: …
1
vote

Handling creation of ORM objects prior to persistence/generation of primary keys?

Posting this mostly because I can't leave this complicated of comment... but anyway... Normally when I look at EmbeddedId type things I see things like from this …
0
votes

Changing the type of an entity preserving its ID

I think skaffman is right here, once the id has been set it won't persist, and further because the id is generated it expects the sequence to be in charge of assigning the id number. You co …