Johans notes, links etc RSS

This is just another unimportant web page with links and pictures of things that I like or just don't want to forget. Contact me
My lifestream

Archive

Feb
3rd
Tue
permalink

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>
Comments (View)
blog comments powered by Disqus