문제

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