Вопрос

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?

Это было полезно?

Решение

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).

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top