Feb
3rd
Tue
3rd
A note on JPA and embeddable
Took me a while to figure out that I have to place my embeddable element below the entity elements, got validation errors about missing embeddable element otherwise.
Simplified example
<entity class="example.Person>
<attributes>
<embedded name="name" />
...
</entity>
<embeddable class="example.Name">
...
</embeddable>