外部キーで結果セットをフィルタリングしようとしています:
createCriteria(Person.class).add(Restrictions.ne("position", 1L)).list()
しかし、この例外を取得します:org.hibernate.PropertyAccessException: could not get a field value by reflection getter of com.example.model.Position.id
必要なJPAエンティティは次のとおりです(必要なフィールドにトリミングされています)。
@Entity
@Table
public class Person {
@Id
@GeneratedValue
private Long id;
@ManyToOne
@JoinColumn(nullable = false)
@ForeignKey(name = "person_position_fkey")
private Position position;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Position getPosition() {
return position;
}
public void setPosition(Position position) {
this.position = position;
}
}
@Entity
@Table
public class Position {
@Id
@GeneratedValue
private Long id;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
}
Restrictions.ne("position.id", 1L)
を試してください