I have a hibernate mapping XML file that contains a <component>
example:
<component name="info"
class="UserInfo"
lazy="false">
</component>
When the model is validated it gives an error for this component field. The error is:
'<component>' attribute should be an Embeddable
I have no idea what this error really means. But something must be wrong, because Embeddable is related to JPA and I am just using plain Hibernate.