I'm using JPA with eclipse link, I wanted to insert only some data in the database, some of the attributes do not need to save, how could I do this?
I'm using JPA with eclipse link, I wanted to insert only some data in the database, some of the attributes do not need to save, how could I do this?
use the @Transient annotation of JPA on the property you do not want to serialize (do not persist), eg:
import javax.persistence.Transient;
@Transient
private String zip;