OpenJPA Entity Enhancement in OSGI container
Introduction
In this example we will see how to enhance the JPA entities before usage in OSGi container.
Let’s assume we got an entity called Person.
import java.io.Serializable;
import javax.persistence.Entity;
import javax.persistence.Id;
@Entit...
sachinhandiekar.com1 min read