google-code-export / morphia

Automatically exported from code.google.com/p/morphia
1 stars 0 forks source link

Add JPA Annotation Converter Extension #362

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Add extension to allow using JPA annotation with classes.

Convert like this?
@Entity
@Table("name") -> @Entity("name")
@Id
@EmbeddedId -> @Id
@Embedded
@Version
@Column -> @Property
@Transient
@Embedded -> Nothing
@Basic -> Nothing

Lifecycle?
@Pre/Post*
@EntityListeners
@DefaultEntityListener -> EntityInterceptor

Original issue reported on code.google.com by scotthernandez on 15 Dec 2011 at 6:29