Domanda

import javax.persistence.*;

simple POJO
class A {

@Transient
protected transient someClass X;

}

Despite this, in the database, I still see it persisted? Any idea of this weird behavior?

È stato utile?

Soluzione

It is because you mixed annotating both fields and getters. According to the JPA spec, you must remain consistent, in which you JPA annotate either only the fields, or only the getters. (usually JPA looks at the ID field and than decides to consider the fields or getters).

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top