@Documented @DomainElement @Retention(value=RUNTIME) @Target(value=TYPE) public @interface DomainEntity
To be a understood as a valid Entity, the class has also to respects the followings:
javax.persistence.Id or javax.persistence.EmbeddedId
SEED Business Support propose out of the box parent class for Entity :
BaseJpaEntity for custom key jpa aggregate root.
SimpleJpaEntity for aggregate root with simple entity id.
EmbedJpaEntity for aggregate root with composite entity id.
SimpleJpaEntity and EmbedJpaEntity. Have a look for examples.Copyright © 2013-2015–2015. All rights reserved.