给定一个
public class Foo {
private String x;
transient private String y;
public String getX() {
return x;
}
public void setX(String x) {
this.x = x;
}
public String getY() {
return y;
}
public void setY(String y) {
this.y = y;
}
}
你怎么能指示JSON-B以连载财产y
?
这是类型Foo
是在@Entity
表示不应该被保留的性质的JPA上下文(transient
)中使用的情况。
除了使用transient
关键字,注释字段与@javax.persistence.Transient
注解。
即
@Transient
private String y;
实际上,这使其可JSON-B序列化的属性。